1234567891011121314151617181920212223 |
- import { a3 as Environment } from './global-e98f203b.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 };
|