1 | import { IPlatform } from './platform';
|
2 | import { IGlobal } from './global';
|
3 | import { IDom } from './dom';
|
4 | import { IFeature } from './feature';
|
5 | export declare function buildPal(): {
|
6 | global: IGlobal;
|
7 | platform: IPlatform;
|
8 | dom: IDom;
|
9 | feature: IFeature;
|
10 | };
|
11 | export declare function ensurePerformance(window: any): void;
|