版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IKeyboardEventInit.d.ts 314 B

123456789101112
  1. import IUIEventInit from '../IUIEventInit';
  2. export default interface IKeyboardEventInit extends IUIEventInit {
  3. key?: string;
  4. code?: string;
  5. location?: number;
  6. ctrlKey?: boolean;
  7. shiftKey?: boolean;
  8. altKey?: boolean;
  9. metaKey?: boolean;
  10. repeat?: boolean;
  11. isComposing?: boolean;
  12. }