ember-source
Version: 
A JavaScript framework for creating ambitious web applications
9 lines • 406 B
TypeScript
declare module '@ember/-internals/browser-environment' {
    export { default as hasDOM } from "@ember/-internals/browser-environment/lib/has-dom";
    export const window: (Window & typeof globalThis) | null;
    export const location: Location | null;
    export const history: History | null;
    export const userAgent: string;
    export const isChrome: boolean;
    export const isFirefox: boolean;
}