UNPKG

341 BPlain TextView Raw
1import { StoreOptions, ModuleTree } from "vuex"
2import { state, getters, actions, mutations } from "./options"
3export interface storeVue<S> extends StoreOptions<S>{
4 modules?: ModuleTree<S>;
5 strict?: boolean;
6}
7export interface airforce {
8 state:state;
9 getters:getters,
10 actions:actions,
11 mutations:mutations
12}
\No newline at end of file