Is there a preferred method for defining fields when setting up a Stencil store?
The documentation provided online primarily showcases examples with numbers, but what about situations involving objects, strings, or booleans? Should we use the 'as' or 'new' keywords?
For instance:
const { state, onChange } = createStore({
username: null as string,
friends: new List<Friends>(),
isActive: false as boolean,
});