Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SearchParamsURL

import { SearchParamsURL } from "https://raw.githubusercontent.com/worker-tools/shed/master/index.ts";

Like URL, but accepts a params argument that is added to the search parameters/query string.

class SearchParamsURL extends URL {
constructor(
url: string | URL,
params?: SearchParamsInit | null,
base?: string | URL,
);
}

§Extends

§Constructors

§
new SearchParamsURL(url: string | URL, params?: SearchParamsInit | null, base?: string | URL)
[src]