Time slots app prototype
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
660 B

import { ae as Environment } from './types-e1e1d1e5.js';
import 'vite';
import 'tinybench';
import 'vite-node/client';
import 'vite-node/server';
import 'vite-node';
import 'node:fs';
import 'node: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 };