Files
tra-analysis/website/functions/node_modules/uri-js/src/schemes/https.ts
2019-01-06 13:14:45 -06:00

11 lines
258 B
TypeScript

import { URISchemeHandler, URIComponents, URIOptions } from "../uri";
import http from "./http";
const handler:URISchemeHandler = {
scheme : "https",
domainHost : http.domainHost,
parse : http.parse,
serialize : http.serialize
}
export default handler;