/** * Identifies a resource across its lifecycle. * * - [`ResourceId::Local`] — used during development and for bundled resources. * Human-readable `@creator/name` format; never assigned a UUID until published. * - [`ResourceId::Remote`] — assigned by the marketplace when a resource is published. * All downloaded resources are identified by UUID, not by their original local ID. */ export type ResourceId = string & { __brand: 'ResourceId'; }; //# sourceMappingURL=ResourceId.d.ts.map