File size: 467 Bytes
9ada4bc
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
export type KeypressEvent = {
    name: string;
    ctrl: boolean;
};
export declare const isUpKey: (key: KeypressEvent) => boolean;
export declare const isDownKey: (key: KeypressEvent) => boolean;
export declare const isSpaceKey: (key: KeypressEvent) => boolean;
export declare const isBackspaceKey: (key: KeypressEvent) => boolean;
export declare const isNumberKey: (key: KeypressEvent) => boolean;
export declare const isEnterKey: (key: KeypressEvent) => boolean;