mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-10 06:23:11 +08:00
Rewritten some parts of redux store to use typescript interfaces
This commit is contained in:
7
client/src/interfaces/GlobalState.ts
Normal file
7
client/src/interfaces/GlobalState.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { State as AppState } from '../store/reducers/app';
|
||||
import { State as ThemeState } from '../store/reducers/theme';
|
||||
|
||||
export interface GlobalState {
|
||||
theme: ThemeState;
|
||||
app: AppState;
|
||||
}
|
||||
Reference in New Issue
Block a user