2017-08-15 23:16:38 -07:00
|
|
|
/**
|
|
|
|
* Type declarations for
|
|
|
|
* import config from './config/environment'
|
|
|
|
*
|
|
|
|
* For now these need to be managed by the developer
|
|
|
|
* since different ember addons can materialize new entries.
|
|
|
|
*/
|
2018-05-15 13:13:37 -07:00
|
|
|
declare const config: {
|
2019-08-31 20:51:14 -07:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
2018-05-15 13:13:37 -07:00
|
|
|
environment: any;
|
|
|
|
modulePrefix: string;
|
|
|
|
podModulePrefix: string;
|
|
|
|
locationType: string;
|
|
|
|
rootURL: string;
|
2019-08-31 20:51:14 -07:00
|
|
|
APP: {};
|
2018-05-15 13:13:37 -07:00
|
|
|
};
|
2019-08-31 20:51:14 -07:00
|
|
|
|
|
|
|
export default config;
|