import type { IClientSideComponentManifest } from '@microsoft/sp-module-interfaces'; import { OldManifestStoreShim } from '../tiny/store/ManifestStore'; /** * @internal */ export interface IManifestStoreEntry { /** * The component id. */ id: string; /** * The component version. */ version: string; /** * The manifest V2 payload. */ manifest?: IClientSideComponentManifest; /** * A debug manifest V2 payload, if one has been provided. */ debugManifest?: IClientSideComponentManifest; } /** * This class maintains a cache of the manifests on the current page. * * @internal */ export default class ManifestStore { private static _instance; static get instance(): OldManifestStoreShim; static set instance(instance: OldManifestStoreShim); } //# sourceMappingURL=ManifestStore.d.ts.map