mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-07 15:04:01 +00:00
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
|
|
export default config;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 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 namespace config {
|
||
|
|
export const environment: any;
|
||
|
|
export const modulePrefix: string;
|
||
|
|
export const podModulePrefix: string;
|
||
|
|
export const locationType: string;
|
||
|
|
}
|