diff --git a/types/index.d.ts b/types/index.d.ts index 4c4e43e64..b295dd88b 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -3,6 +3,8 @@ import _Vue, { WatchOptions } from "vue"; // augment typings of Vue.js import "./vue"; +import { mapState, mapMutations, mapGetters, mapActions, createNamespacedHelpers } from "./helpers"; + export * from "./helpers"; export declare class Store { @@ -129,5 +131,10 @@ export interface ModuleTree { declare const _default: { Store: typeof Store; install: typeof install; + mapState: typeof mapState, + mapMutations: typeof mapMutations, + mapGetters: typeof mapGetters, + mapActions: typeof mapActions, + createNamespacedHelpers: typeof createNamespacedHelpers, }; export default _default;