ember-source
Version:
A JavaScript framework for creating ambitious web applications
19 lines (16 loc) • 360 B
TypeScript
declare module '@glimmer-workspace/env' {
/**
* Declare import.meta.env in state, since it's the root package.
*/
interface ImportMetaEnv {
BASE_URL: string;
MODE: string;
DEV: boolean;
PROD: boolean;
SSR: boolean;
}
interface ImportMeta {
url: string;
readonly env: ImportMetaEnv;
}
}