mirror of
https://github.com/musix-org/musix-oss
synced 2025-07-02 02:33:38 +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; |