gs-port / node_modules /bare-url /global.d.ts
Scribbler310's picture
feat: enhance dashboard
c2b7eb3 verified
import * as url from '.'
type URLConstructor = typeof url.URL
type URLSearchParamsConstructor = typeof url.URLSearchParams
declare global {
type URL = url.URL
type URLSearchParams = url.URLSearchParams
const URL: URLConstructor
const URLSearchParams: URLSearchParamsConstructor
}