mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-31 21:36:08 +00:00
17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
/**
|
|
* 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: any;
|
|
modulePrefix: string;
|
|
podModulePrefix: string;
|
|
locationType: string;
|
|
rootURL: string;
|
|
};
|
|
|
|
export default config;
|