• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import { URISchemeHandler, URIOptions } from "../uri";
2import { URNComponents } from "./urn";
3export interface UUIDComponents extends URNComponents {
4    uuid?: string;
5}
6declare const handler: URISchemeHandler<UUIDComponents, URIOptions, URNComponents>;
7export default handler;
8