import type { PromotedState } from './PromotedState'; import type { PageType } from './PageType'; /** * Diagnostics context info * * @internal */ export interface IDiagnosticContextInfo { pageId: string | undefined; isHubSite: boolean; hubSiteId: string | undefined; webTemplate: string; pageType: PageType | undefined; promotedState: PromotedState | undefined; isEduClass: boolean | undefined; hasCopilotLicense: boolean | undefined; } //# sourceMappingURL=IDiagnosticContextInfo.d.ts.map