angular/projects/researchdatabox/portal-ng-common/src/lib/service.interface.ts
Basic methods for a low-level Service. Supports async init of services.
Methods |
getConfig | ||||||
getConfig(appName?: string)
|
||||||
Returns the global config object for the client, optionally provide the appName to return app-specific config (WIP)
Parameters :
Returns :
any
|
import { Initable } from './initable.interface';
/**
* Basic methods for a low-level Service. Supports async init of services.
*/
export interface Service extends Initable {
/**
* Returns the global config object for the client, optionally provide the appName to return app-specific config (WIP)
*/
getConfig(appName?:string): any;
}