fix: Add plugins to StoreState interface

This commit is contained in:
Johannes Schill 2019-01-28 16:43:57 +01:00
parent 7df00747d3
commit acbcca1102

View File

@ -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;
}