Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura

urn-uuid.d.ts 279B

1234567
  1. import { URISchemeHandler, URIOptions } from "../uri";
  2. import { URNComponents } from "./urn";
  3. export interface UUIDComponents extends URNComponents {
  4. uuid?: string;
  5. }
  6. declare const handler: URISchemeHandler<UUIDComponents, URIOptions, URNComponents>;
  7. export default handler;