fantasia-archive/src/interfaces/I_KeypressObject.ts
2021-02-22 23:30:18 +01:00

11 lines
183 B
TypeScript

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