Files
julia-buildpkg/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts
David Anthoff c0c6ce37ca Add node deps
2019-09-14 21:05:22 -07: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;