1 | declare module '@ember/-internals/browser-environment' {
|
2 | export { default as hasDOM } from '@ember/-internals/browser-environment/lib/has-dom';
|
3 | export const window: (Window & typeof globalThis) | null;
|
4 | export const location: Location | null;
|
5 | export const history: History | null;
|
6 | export const userAgent: string;
|
7 | export const isChrome: boolean;
|
8 | export const isFirefox: boolean;
|
9 | }
|