@kephas/ngx-core
Version:
Provides integration capabilities with Angular 13+.
26 lines (25 loc) • 532 B
TypeScript
import { Expando } from '@kephas/core';
/**
* Gets the application settings.
*
* @export
* @class AppSettings
*/
export declare class AppSettings implements Expando {
/**
* Gets the base URL of the application.
*
* @readonly
* @type {string}
* @memberof AppSettings
*/
get baseUrl(): string;
/**
* Gets the base API URL of the application.
*
* @readonly
* @type {string}
* @memberof AppSettings
*/
get baseApiUrl(): string;
}