mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-22 17:10:30 +00:00
19 lines
439 B
TypeScript
19 lines
439 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: {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
environment: any;
|
|
modulePrefix: string;
|
|
podModulePrefix: string;
|
|
locationType: string;
|
|
rootURL: string;
|
|
APP: {};
|
|
};
|
|
|
|
export default config;
|