Files
vps-management-bot/node_modules/bare-url/global.d.ts

13 lines
291 B
TypeScript
Raw Normal View History

2026-03-21 01:10:53 +08:00
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
}