This commit is contained in:
sumedhb1995 2020-02-05 15:21:17 -08:00 коммит произвёл GitHub
Родитель fd54f68e39
Коммит 5a3d4926d6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -483,6 +483,10 @@ export class ContainerRuntime extends EventEmitter implements IHostRuntime, IRun
return this._flushMode;
}
public get scope(): IComponent {
return this.context.scope;
}
public get IComponentRegistry(): IComponentRegistry {
return this.registry;
}

Просмотреть файл

@ -332,6 +332,7 @@ export interface IHostRuntime extends
readonly submitSignalFn: (contents: any) => void;
readonly snapshotFn: (message: string) => Promise<void>;
readonly closeFn: () => void;
readonly scope: IComponent;
/**
* Returns the runtime of the component.