Files
familyARK/familyark/app/node_modules/uri-js/src/schemes/https.ts
T
Gustavo Adolfo Mesa Roldán 83ed8148a2 Info
2020-03-29 14:45:01 +02: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;