|
@@ -9,6 +9,7 @@ import { ApiKey, ApiKeysState, NewApiKey } from './apiKeys';
|
|
|
import { Invitee, OrgUser, User, UsersState } from './user';
|
|
import { Invitee, OrgUser, User, UsersState } from './user';
|
|
|
import { DataSource, DataSourcesState } from './datasources';
|
|
import { DataSource, DataSourcesState } from './datasources';
|
|
|
import { PluginDashboard, PluginMeta, Plugin, PluginsState } from './plugins';
|
|
import { PluginDashboard, PluginMeta, Plugin, PluginsState } from './plugins';
|
|
|
|
|
+import { Alert, AlertsState } from './alerts';
|
|
|
|
|
|
|
|
export {
|
|
export {
|
|
|
Team,
|
|
Team,
|
|
@@ -46,6 +47,8 @@ export {
|
|
|
User,
|
|
User,
|
|
|
UsersState,
|
|
UsersState,
|
|
|
PluginDashboard,
|
|
PluginDashboard,
|
|
|
|
|
+ Alert,
|
|
|
|
|
+ AlertsState,
|
|
|
};
|
|
};
|
|
|
|
|
|
|
|
export interface StoreState {
|
|
export interface StoreState {
|
|
@@ -58,4 +61,5 @@ export interface StoreState {
|
|
|
dashboard: DashboardState;
|
|
dashboard: DashboardState;
|
|
|
dataSources: DataSourcesState;
|
|
dataSources: DataSourcesState;
|
|
|
users: UsersState;
|
|
users: UsersState;
|
|
|
|
|
+ alerts: AlertsState;
|
|
|
}
|
|
}
|