/** * The ratio between physical pixels and device-independent pixels * (dips) on the device (window.devicePixelRatio). */ export const DEVICE_PIXEL_RATIO: number; /** * User agent string says we are dealing with Firefox as browser. */ export const FIREFOX: boolean; /** * Image.prototype.decode() is supported. */ export const IMAGE_DECODE: boolean; /** * User agent string says we are dealing with a Mac as platform. */ export const MAC: boolean; export const PASSIVE_EVENT_LISTENERS: boolean; /** * User agent string says we are dealing with Safari as browser. */ export const SAFARI: boolean; /** * User agent string says we are dealing with a WebKit engine. */ export const WEBKIT: boolean; /** * The execution context is a worker with OffscreenCanvas available. */ export const WORKER_OFFSCREEN_CANVAS: boolean;