Files
ClubLogos/scripts/node_modules/bare-url/global.d.ts
T
Tomáš Dvořák cdb8bcd3e9 fff
2025-10-03 16:26:44 +02:00

13 lines
291 B
TypeScript

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
}