| 3 | * Options to pass to the @Module decorator |
| 4 | */ |
| 5 | export 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 | |
| 20 | export interface DynamicModuleOptions { |
| 21 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected