From 3845bace0aed961f8bd0194256ec1aa733acaf67 Mon Sep 17 00:00:00 2001 From: Alex Havermale Date: Tue, 1 Jan 2019 17:56:21 -0500 Subject: [PATCH] Add `devtools` to store options type --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index 6f613bd66..c8323c025 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -86,6 +86,7 @@ export interface StoreOptions { modules?: ModuleTree; plugins?: Plugin[]; strict?: boolean; + devtools?: boolean; } export type ActionHandler = (this: Store, injectee: ActionContext, payload: any) => any;