fantasia-archive/src/interfaces/I_KeypressObject.ts

7 lines
113 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
}