fantasia-archive/src/interfaces/I_KeypressObject.ts

11 lines
181 B
TypeScript
Raw Normal View History

2021-02-21 01:06:21 +13:00
export interface I_KeyPressObject {
altKey: boolean
ctrlKey: boolean
shiftKey: boolean
2021-03-18 10:26:08 +13:00
which: number
editable?: boolean
id?: string
tooltip?: string
note? :string
2021-02-21 01:06:21 +13:00
}