Skip to content

Commit 220e193

Browse files
committed
fix module namespaced option typing
1 parent 4d150e9 commit 220e193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export type Mutation<S> = (state: S, payload: any) => any;
8484
export type Plugin<S> = (store: Store<S>) => any;
8585

8686
export interface Module<S, R> {
87-
namespace?: string;
87+
namespaced?: boolean;
8888
state?: S;
8989
getters?: GetterTree<S, R>;
9090
actions?: ActionTree<S, R>;

0 commit comments

Comments
 (0)