1 | declare module '@ember/-internals/environment/lib/context' {
|
2 | export interface GlobalContext {
|
3 | imports: object;
|
4 | exports: object;
|
5 | lookup: Record<string, unknown>;
|
6 | }
|
7 | export const context: GlobalContext;
|
8 | export function getLookup(): Record<string, unknown>;
|
9 | export function setLookup(value: Record<string, unknown>): void;
|
10 | }
|