projects/wms-framework/src/lib/regionsframework/servicelocation/IServiceLocator.ts
IServiceLocator interface
Methods |
getInstance | ||||||
getInstance(token: any)
|
||||||
Type parameters :
|
||||||
Gest the instance of the Service Locator
Parameters :
Returns :
T
|
export interface IServiceLocator {
/**
* Gest the instance of the Service Locator
* @param token
* @wMethod GetInstance
* @wIgnore
*/
getInstance<T>(token: any): T;
}