compatibility.d.ts 390 B

1234567
  1. export declare const isSafari: () => boolean;
  2. export declare const isFirefox: () => boolean;
  3. export declare const accessLocalStorage: () => boolean;
  4. export declare const getEventName: () => "click" | "touchstart";
  5. export declare const isCtrl: (event: KeyboardEvent) => boolean;
  6. export declare const updateHotkeyTip: (hotkey: string) => string;
  7. export declare const isChrome: () => boolean;