oak-domain/lib/utils/url/index.d.ts

7 lines
250 B
TypeScript

import { URL, URLSearchParams } from 'node:url';
import type { UrlObject } from 'node:url';
declare const url: typeof URL;
declare const urlSearchParams: typeof URLSearchParams;
type urlObject = UrlObject;
export { url, urlSearchParams, urlObject };