21 lines
526 B
TypeScript
Raw Normal View History

/**
* 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.
*/
declare const config: {
environment: 'development' | 'test' | 'production';
modulePrefix: string;
podModulePrefix: string;
locationType: string;
rootURL: string;
APP: {
// Alternate value for notifications service toast delay, used in test runs
notificationsTimeout?: number;
};
};
2019-08-31 20:51:14 -07:00
export default config;