import type { IClientSideComponentManifest } from './IClientSideComponentManifest'; /** * A library is defined by this manifest. Libraries currently do not have any additional properties. * * @public */ export interface IClientSideAssemblyManifest extends IClientSideComponentManifest { /** * The ID of the component from which the assembly is built. * * @remarks * * Supported values: any GUID * * Example: "dbef608d-3ad5-4f8f-b139-d916f2f0a294" */ rootComponentId: string; } //# sourceMappingURL=IClientSideAssemblyManifest.d.ts.map