@zag-js/dom-query
Version:
The dom helper library for zag.js machines
17 lines (15 loc) • 698 B
TypeScript
declare const isDom: () => boolean;
declare function getPlatform(): string;
declare function getUserAgent(): string;
declare const isTouchDevice: () => boolean;
declare const isIPhone: () => boolean;
declare const isIPad: () => boolean;
declare const isIos: () => boolean;
declare const isApple: () => boolean;
declare const isMac: () => boolean;
declare const isSafari: () => boolean;
declare const isFirefox: () => boolean;
declare const isChrome: () => boolean;
declare const isWebKit: () => boolean;
declare const isAndroid: () => boolean;
export { getPlatform, getUserAgent, isAndroid, isApple, isChrome, isDom, isFirefox, isIPad, isIPhone, isIos, isMac, isSafari, isTouchDevice, isWebKit };