UNPKG

uri-js

Version:

An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.

8 lines (7 loc) 279 B
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;