Keymap data layer (#95)
This commit is contained in:
committed by
József Farkas
parent
fb8cd163ec
commit
b78bc5850f
9
src/store/index.ts
Normal file
9
src/store/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { Keymap } from '../config-serializer/config-items/Keymap';
|
||||
import { Macro } from '../config-serializer/config-items/Macro';
|
||||
|
||||
// State interface for the application
|
||||
export interface AppState {
|
||||
keymaps: Keymap[];
|
||||
macros: Macro[];
|
||||
presetKeymaps: Keymap[];
|
||||
}
|
||||
Reference in New Issue
Block a user