Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

urn-uuid.d.ts 286B

1234567
  1. import { URISchemeHandler, URIOptions } from "../uri";
  2. import { URNComponents } from "./urn";
  3. export interface UUIDComponents extends URNComponents {
  4. uuid?: string;
  5. }
  6. declare const handler: URISchemeHandler<UUIDComponents, URIOptions, URNComponents>;
  7. export default handler;