mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fix: Add plugins to StoreState interface
This commit is contained in:
parent
7df00747d3
commit
acbcca1102
@ -9,6 +9,7 @@ import { ExploreState } from './explore';
|
|||||||
import { UsersState, UserState } from './user';
|
import { UsersState, UserState } from './user';
|
||||||
import { OrganizationState } from './organization';
|
import { OrganizationState } from './organization';
|
||||||
import { AppNotificationsState } from './appNotifications';
|
import { AppNotificationsState } from './appNotifications';
|
||||||
|
import { PluginsState } from './plugins';
|
||||||
|
|
||||||
export interface StoreState {
|
export interface StoreState {
|
||||||
navIndex: NavIndex;
|
navIndex: NavIndex;
|
||||||
@ -24,4 +25,5 @@ export interface StoreState {
|
|||||||
organization: OrganizationState;
|
organization: OrganizationState;
|
||||||
appNotifications: AppNotificationsState;
|
appNotifications: AppNotificationsState;
|
||||||
user: UserState;
|
user: UserState;
|
||||||
|
plugins: PluginsState;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user