15 lines
286 B
TypeScript
15 lines
286 B
TypeScript
export default config;
|
|
|
|
/**
|
|
* Type declarations for
|
|
* import config from 'my-app/config/environment'
|
|
*/
|
|
declare const config: {
|
|
environment: string;
|
|
modulePrefix: string;
|
|
podModulePrefix: string;
|
|
locationType: string;
|
|
rootURL: string;
|
|
APP: Record<string, unknown>;
|
|
};
|