use standard URLSearchParams insead of custom functions

This commit is contained in:
s2
2020-01-03 14:23:14 +01:00
parent b7fa481dcb
commit dd8c163379
60 changed files with 39726 additions and 47 deletions

View File

@@ -0,0 +1,7 @@
import { URISchemeHandler, URIOptions } from "../uri";
import { URNComponents } from "./urn";
export interface UUIDComponents extends URNComponents {
uuid?: string;
}
declare const handler: URISchemeHandler<UUIDComponents, URIOptions, URNComponents>;
export default handler;