twitst4tz

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

https.ts (258B)


      1 import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
      2 import http from "./http";
      3 
      4 const handler:URISchemeHandler = {
      5 	scheme : "https",
      6 	domainHost : http.domainHost,
      7 	parse : http.parse,
      8 	serialize : http.serialize
      9 }
     10 
     11 export default handler;