mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-10-10 20:30:18 +00:00
11 lines
258 B
TypeScript
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; |