@o3r/core
Version:
Core of the Otter Framework
35 lines • 703 B
TypeScript
export interface BootstrapConfig {
/**
* App environment
*
*/
environment: 'prod' | 'dev';
}
/** Data set injected to the page from the DGP web-server */
export interface Dataset {
/**
* Bootstrap configuration
* @example
* ```typescript
* '{ environment: 'prod' }'
* ```
*/
bootstrapconfig?: string;
/**
* Dynamic content path
* @example
* ```typescript
* 'my/dynamic/path'
* ```
*/
dynamiccontentpath?: string;
/**
* Application basehref url
* @example
* ```typescript
* '/my/base/href'
* ```
*/
appbasehref?: string;
}
//# sourceMappingURL=dgp-interfaces.d.ts.map