Urara-Blog/node_modules/.pnpm-store/v3/files/b9/318e94200b18e4344c9e525ac4630ef93bd7fdb90af31979d496bb4a0f8c6578c3f665e652f0bf99e37a3e908c22bd9f997614c60ed600822cb7586ee2eb29-exec
2022-08-14 01:14:53 +08:00

7 lines
279 B
Text
Executable file

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;