23 lines
576 B
TypeScript
23 lines
576 B
TypeScript
import { ae as Environment } from './types-71ccd11d.js';
|
|
import 'vite';
|
|
import 'tinybench';
|
|
import 'fs';
|
|
import 'worker_threads';
|
|
|
|
declare const environments: {
|
|
node: Environment;
|
|
jsdom: Environment;
|
|
'happy-dom': Environment;
|
|
'edge-runtime': Environment;
|
|
};
|
|
|
|
interface PopulateOptions {
|
|
bindFunctions?: boolean;
|
|
}
|
|
declare function populateGlobal(global: any, win: any, options?: PopulateOptions): {
|
|
keys: Set<string>;
|
|
skipKeys: string[];
|
|
originals: Map<string | symbol, any>;
|
|
};
|
|
|
|
export { environments as builtinEnvironments, populateGlobal };
|