Spaces:
Sleeping
Sleeping
File size: 291 Bytes
c2b7eb3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 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
}
|