twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

urn-uuid.d.ts (286B)


      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;