fantasia-archive/src/interfaces/I_KeypressObject.ts

11 lines
183 B
TypeScript
Raw Normal View History

2021-02-21 01:06:21 +13:00
export interface I_KeyPressObject {
altKey: boolean
ctrlKey: boolean
shiftKey: boolean
keyCode: number
editable?: boolean
id?: string
tooltip?: string
note? :string
2021-02-21 01:06:21 +13:00
}