new(core.gbapp): Better support for instance params.

This commit is contained in:
Rodrigo Rodriguez 2020-07-04 16:32:57 -03:00
parent ff70b88589
commit 349069bc72
2 changed files with 2 additions and 0 deletions

View file

@ -59,6 +59,7 @@ export class GBMinInstance {
userProfile: any;
whatsAppDirectLine: any;
cbMap: {};
scriptMap: {};
sandBoxMap: {};

View file

@ -62,4 +62,5 @@ export interface IGBCoreService {
installWebHook(isGet: boolean, url: string, callback: any);
setWWWRoot(localPath: string);
setEntryPointDialog(dialogName: string);
getParam<T>(instance: IGBInstance, name: string, defaultValue?: T): any;
}