15 lines
313 B
TypeScript
15 lines
313 B
TypeScript
|
/**
|
||
|
* Type declarations for
|
||
|
* import config from 'frontend-src/config/environment'
|
||
|
*/
|
||
|
declare const config: {
|
||
|
environment: string;
|
||
|
modulePrefix: string;
|
||
|
podModulePrefix: string;
|
||
|
locationType: 'history' | 'hash' | 'none';
|
||
|
rootURL: string;
|
||
|
APP: Record<string, unknown>;
|
||
|
};
|
||
|
|
||
|
export default config;
|