Skip to content

Commit

Permalink
fix module namespaced option typing
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Dec 17, 2016
1 parent 4d150e9 commit 220e193
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export type Mutation<S> = (state: S, payload: any) => any;
export type Plugin<S> = (store: Store<S>) => any;

export interface Module<S, R> {
namespace?: string;
namespaced?: boolean;
state?: S;
getters?: GetterTree<S, R>;
actions?: ActionTree<S, R>;
Expand Down

0 comments on commit 220e193

Please sign in to comment.