UNPKG

279 BTypeScriptView Raw
1/**
2 * This function returns the global object across Node and browsers.
3 *
4 * Note: `globalThis` is the standardized approach however it has been added to
5 * Node.js in version 12. We need to include this snippet until Node 12 EOL.
6 */
7export declare function getGlobal(): any;