fantasia-archive/src/interfaces/I_KeypressObject.ts
2021-03-17 22:26:08 +01:00

11 lines
181 B
TypeScript

export interface I_KeyPressObject {
altKey: boolean
ctrlKey: boolean
shiftKey: boolean
which: number
editable?: boolean
id?: string
tooltip?: string
note? :string
}