16 lines
301 B
TypeScript
16 lines
301 B
TypeScript
/**
|
|
* Configuration data set.
|
|
*/
|
|
export const INJECTED_CONFIG: any = (<any>window).__config;
|
|
|
|
|
|
/**
|
|
* REST API route information.
|
|
*/
|
|
export const INJECTED_ENDPOINTS: any = (<any>window).__endpoints;
|
|
|
|
|
|
/**
|
|
* Features information.
|
|
*/
|
|
export const INJECTED_FEATURES: any = (<any>window).__features;
|