UNPKG

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