Browse Source

fix: Add plugins to StoreState interface

Johannes Schill 7 years ago
parent
commit
acbcca1102
1 changed files with 2 additions and 0 deletions
  1. 2 0
      public/app/types/store.ts

+ 2 - 0
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;
 }