Files
mooknote_web/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts
DelLevin-Home a4a326401e 1
2026-03-10 22:06:32 +08:00

8 lines
279 B
TypeScript

import { URISchemeHandler, URIOptions } from "../uri";
import { URNComponents } from "./urn";
export interface UUIDComponents extends URNComponents {
uuid?: string;
}
declare const handler: URISchemeHandler<UUIDComponents, URIOptions, URNComponents>;
export default handler;