mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-06 16:28:16 +00:00
14 lines
328 B
TypeScript
14 lines
328 B
TypeScript
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;
|
|
};
|
|
};
|
|
|
|
export default config;
|