1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts

8 lines
279 B
TypeScript
Raw Permalink Normal View History

2023-12-18 13:12:25 +08:00
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;