| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import { Team, TeamsState, TeamState, TeamGroup, TeamMember } from './teams';
- import { AlertRuleDTO, AlertRule, AlertRulesState } from './alerting';
- import { LocationState, LocationUpdate, UrlQueryMap, UrlQueryValue } from './location';
- import { NavModel, NavModelItem, NavIndex } from './navModel';
- import { FolderDTO, FolderState, FolderInfo } from './folders';
- import { DashboardState } from './dashboard';
- import { DashboardAcl, OrgRole, PermissionLevel } from './acl';
- import { ApiKey, ApiKeysState, NewApiKey } from './apiKeys';
- import { User } from './user';
- import { DataSource, DataSourcesState } from './datasources';
- import { PluginMeta, Plugin, PluginsState } from './plugins';
- export {
- Team,
- TeamsState,
- TeamState,
- TeamGroup,
- TeamMember,
- AlertRuleDTO,
- AlertRule,
- AlertRulesState,
- LocationState,
- LocationUpdate,
- NavModel,
- NavModelItem,
- NavIndex,
- UrlQueryMap,
- UrlQueryValue,
- FolderDTO,
- FolderState,
- FolderInfo,
- DashboardState,
- DashboardAcl,
- OrgRole,
- PermissionLevel,
- DataSource,
- PluginMeta,
- ApiKey,
- ApiKeysState,
- NewApiKey,
- User,
- Plugin,
- PluginsState,
- DataSourcesState,
- };
- export interface StoreState {
- navIndex: NavIndex;
- location: LocationState;
- alertRules: AlertRulesState;
- teams: TeamsState;
- team: TeamState;
- folder: FolderState;
- dashboard: DashboardState;
- }
|