From acbcca11021f1c79254ff8744b36206830efacc9 Mon Sep 17 00:00:00 2001 From: Johannes Schill Date: Mon, 28 Jan 2019 16:43:57 +0100 Subject: [PATCH] fix: Add plugins to StoreState interface --- public/app/types/store.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/public/app/types/store.ts b/public/app/types/store.ts index 0f5ad8cd088..78832052e96 100644 --- a/public/app/types/store.ts +++ b/public/app/types/store.ts @@ -9,6 +9,7 @@ import { ExploreState } from './explore'; import { UsersState, UserState } from './user'; import { OrganizationState } from './organization'; import { AppNotificationsState } from './appNotifications'; +import { PluginsState } from './plugins'; export interface StoreState { navIndex: NavIndex; @@ -24,4 +25,5 @@ export interface StoreState { organization: OrganizationState; appNotifications: AppNotificationsState; user: UserState; + plugins: PluginsState; }