aurelia-pal-nodejs
Version:
The Node.js-specific implementation of Aurelia's platform abstraction layer.
12 lines (11 loc) • 342 B
TypeScript
import { IPlatform } from './platform';
import { IGlobal } from './global';
import { IDom } from './dom';
import { IFeature } from './feature';
export declare function buildPal(): {
global: IGlobal;
platform: IPlatform;
dom: IDom;
feature: IFeature;
};
export declare function ensurePerformance(window: any): void;