aurelia-pal-nodejs
Version:
The Node.js-specific implementation of Aurelia's platform abstraction layer.
12 lines (11 loc) • 427 B
TypeScript
/// <reference path="nodejs-global.d.ts" />
export { ensurePerformance } from './nodejs-pal-builder';
/**
* Initializes the PAL with the NodeJS-targeted implementation.
*/
export declare function initialize(): void;
/**
* @description initializes and makes variables like 'window' into NodeJS globals
*/
export declare function globalize(): typeof globalThis;
export declare function reset(window?: Window): void;