/** @type {typeof globalThis} */ | |
export const globals = | |
typeof window !== 'undefined' | |
? window | |
: typeof globalThis !== 'undefined' | |
? globalThis | |
: // @ts-ignore Node typings have this | |
global; | |
/** @type {typeof globalThis} */ | |
export const globals = | |
typeof window !== 'undefined' | |
? window | |
: typeof globalThis !== 'undefined' | |
? globalThis | |
: // @ts-ignore Node typings have this | |
global; | |