/*! * Copyright (C) Microsoft Corporation. All rights reserved. */ import type { ILogger } from '../telemetry/Logger.types'; export interface IConfig { logger?: ILogger; } export interface IContext { app: IAppContext; host: IHostContext; } export interface IAppContext { appId: string; environmentId: string; } export interface IHostContext { sessionId: string; } //# sourceMappingURL=App.Types.d.ts.map