django-vue3-admin-web/node_modules/@interactjs/utils/browser.d.ts
2025-10-20 21:21:14 +08:00

22 lines
490 B
TypeScript

declare const browser: {
init: typeof init;
supportsTouch: boolean;
supportsPointerEvent: boolean;
isIOS7: boolean;
isIOS: boolean;
isIe9: boolean;
isOperaMobile: boolean;
prefixedMatchesSelector: "matches";
pEventTypes: {
up: string;
down: string;
over: string;
out: string;
move: string;
cancel: string;
};
wheelEvent: string;
};
declare function init(window: any): void;
export default browser;