This commit is contained in:
Gustavo Adolfo Mesa Roldán
2020-03-29 14:45:01 +02:00
parent 1a4d72f145
commit 83ed8148a2
578 changed files with 100547 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
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;