yurl
Version:
A URL manipulation library that offers support for daisy chaining, pathname resolution and query args manipulation.
9 lines • 416 B
TypeScript
declare const _URL: {
new (url: string | URL, base?: string | URL | undefined): URL;
prototype: URL;
createObjectURL(obj: Blob | MediaSource): string;
revokeObjectURL(url: string): void;
};
export { _URL as URL };
export declare type URLProps = 'hash' | 'host' | 'hostname' | 'href' | 'origin' | 'password' | 'pathname' | 'port' | 'protocol' | 'search' | 'username';
//# sourceMappingURL=URL.d.ts.map