Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions base.tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"test-ts/",
"test-js/",
"dist/",
"js",
"test/",
"node_modules"
]
Expand Down
4 changes: 2 additions & 2 deletions dist/module.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { ActionRegister } from "./actions";
import { _state, _mutations, _getters, _proxy, _map, _store, _namespacedPath, _actions_register, _actions, MutationFunction, GetterFunction, ActionFunction, VuexMap, _submodule, _module, _target } from "./symbols";
import { _state, _mutations, _getters, _proxy, _map, _store, _namespacedPath, _actions_register, _actions, MutationFunction, GetterFunction, ActionFunction, VuexMap, _submodule, SubModuleObject, _module, _target } from "./symbols";
import { Store } from "vuex";
export declare type VuexClassConstructor<T> = new () => T;
export declare class VuexModule {
static CreateSubModule<V extends typeof VuexModule>(SubModule: V): InstanceType<V>;
static CreateSubModule<V extends typeof VuexModule>(SubModule: V): SubModuleObject;
static CreateProxy<V extends typeof VuexModule>($store: Store<any>, cls: V): InstanceType<V>;
static ExtractVuexModule(cls: typeof VuexModule): {
namespaced: boolean;
Expand Down
2 changes: 1 addition & 1 deletion dist/module.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/module.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { ActionRegister } from "./actions";
import { _state, _mutations, _getters, _proxy, _map, _store, _namespacedPath, _actions_register, _actions, MutationFunction, GetterFunction, ActionFunction, VuexMap, _submodule, _module, _target } from "./symbols";
import { _state, _mutations, _getters, _proxy, _map, _store, _namespacedPath, _actions_register, _actions, MutationFunction, GetterFunction, ActionFunction, VuexMap, _submodule, SubModuleObject, _module, _target } from "./symbols";
import { Store } from "vuex";
export declare type VuexClassConstructor<T> = new () => T;
export declare class VuexModule {
static CreateSubModule<V extends typeof VuexModule>(SubModule: V): InstanceType<V>;
static CreateSubModule<V extends typeof VuexModule>(SubModule: V): SubModuleObject;
static CreateProxy<V extends typeof VuexModule>($store: Store<any>, cls: V): InstanceType<V>;
static ExtractVuexModule(cls: typeof VuexModule): {
namespaced: boolean;
Expand Down
Loading