暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

shortcut.d.ts 338B

123456789101112131415
  1. interface ShortcutOptions {
  2. type?: string;
  3. propagate?: boolean;
  4. disable_in_input?: boolean;
  5. target?: HTMLElement;
  6. keycode?: boolean;
  7. }
  8. interface ShortcutStatic {
  9. add(key_combination: string, callback: Function, opt?: ShortcutOptions);
  10. remove(key_combination: string);
  11. }
  12. declare var shortcut: ShortcutStatic;