mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 09:23:12 +08:00
13 lines
489 B
TypeScript
13 lines
489 B
TypeScript
import { State as AppState } from '../store/reducers/app';
|
|
import { State as ThemeState } from '../store/reducers/theme';
|
|
import { State as BookmarkState } from '../store/reducers/bookmark';
|
|
import { State as NotificationState } from '../store/reducers/notification';
|
|
import { State as ConfigState } from '../store/reducers/config';
|
|
|
|
export interface GlobalState {
|
|
theme: ThemeState;
|
|
app: AppState;
|
|
bookmark: BookmarkState;
|
|
notification: NotificationState;
|
|
config: ConfigState;
|
|
} |