MCPcopy
hub / github.com/championswimmer/vuex-module-decorators / StaticModuleOptions

Interface StaticModuleOptions

src/moduleoptions.ts:5–18  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3 * Options to pass to the @Module decorator
4 */
5export interface StaticModuleOptions {
6 /**
7 * name of module, if being namespaced
8 */
9 name?: string
10 /**
11 * whether or not the module is namespaced
12 */
13 namespaced?: boolean
14 /**
15 * Whether to generate a plain state object, or a state factory for the module
16 */
17 stateFactory?: boolean
18}
19
20export interface DynamicModuleOptions {
21 /**

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected