UNPKG

429 BTypeScriptView Raw
1// Type definitions for jsdom-global 3.0
2// Project: https://www.npmjs.com/package/jsdom-global
3// Definitions by: Max Boguslavskiy <https://github.com/maxbogus>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5// Minimum TypeScript Version: 4.5
6
7import { ConstructorOptions } from 'jsdom';
8
9export = jsdomGlobal;
10
11declare function jsdomGlobal(html?: string | Buffer, options?: ConstructorOptions): () => void;