mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-06 04:23:11 +08:00
9 lines
289 B
TypeScript
9 lines
289 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';
|
|
|
|
export interface GlobalState {
|
|
theme: ThemeState;
|
|
app: AppState;
|
|
bookmark: BookmarkState;
|
|
} |