Keymap data layer (#95)

This commit is contained in:
Nejc Zdovc
2016-09-18 12:38:42 +02:00
committed by József Farkas
parent fb8cd163ec
commit b78bc5850f
40 changed files with 748 additions and 195 deletions

9
src/store/index.ts Normal file
View 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[];
}