1 | export declare const isIE: boolean;
|
2 | export declare const isEdge: boolean;
|
3 | export declare const isEdgeOrIE: boolean;
|
4 | export declare const isOpera: boolean;
|
5 | export declare const isFirefox: boolean;
|
6 | export declare const isWebKit: boolean;
|
7 | export declare const isChrome: boolean;
|
8 | export declare const isSafari: boolean;
|
9 | export declare const isIPad: boolean;
|
10 | export declare const isNative: boolean;
|
11 | export declare const isBasicWasmSupported: boolean;
|
12 |
|
13 |
|
14 |
|
15 |
|
16 | export declare function animationFrame(n?: number): Promise<void>;
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 | export declare function parseCssMagnitude(value: string | null, defaultValue: number): number;
|
23 |
|
24 |
|
25 |
|
26 |
|
27 | export declare function parseCssTime(time: string | null, defaultValue: number): number;
|
28 |
|
29 |
|
30 |
|
31 | export declare function preventNavigation(event: WheelEvent): void;
|
32 | export declare type PartialCSSStyle = Omit<Partial<CSSStyleDeclaration>, 'visibility' | 'display' | 'parentRule' | 'getPropertyPriority' | 'getPropertyValue' | 'item' | 'removeProperty' | 'setProperty'>;
|
33 | export declare function measureTextWidth(text: string | string[], style?: PartialCSSStyle): number;
|
34 | export declare function measureTextHeight(text: string | string[], style?: PartialCSSStyle): number;
|
35 |
|
\ | No newline at end of file |