2024-08-22 17:57:53 +00:00
|
|
|
/**
|
|
|
|
* Type declarations for
|
2024-09-18 11:49:23 +00:00
|
|
|
* import config from 'frontend-reactive/config/environment'
|
2024-08-22 17:57:53 +00:00
|
|
|
*/
|
|
|
|
declare const config: {
|
|
|
|
environment: string;
|
|
|
|
modulePrefix: string;
|
|
|
|
podModulePrefix: string;
|
|
|
|
locationType: 'history' | 'hash' | 'none';
|
|
|
|
rootURL: string;
|
|
|
|
APP: Record<string, unknown>;
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|