import type { IClientSideComponentManifest } from '@microsoft/sp-module-interfaces'; import type ServiceScope from './serviceScope/ServiceScope'; import type { IServiceKey } from './serviceScope/IServiceKey'; /** * ClientManifestData contains Component's Manifest. * Used for logging the calling component's manifest when communicating with external services. * * @internal */ export default class ClientManifestData { static readonly serviceKey: IServiceKey; readonly manifest: IClientSideComponentManifest | undefined; constructor(serviceScope: ServiceScope, manifest?: IClientSideComponentManifest); } //# sourceMappingURL=ClientManifestData.d.ts.map