Files

8 lines
286 B
TypeScript
Raw Permalink Normal View History

2020-05-15 15:25:57 -04: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;