index.d.ts 314 B

123456789
  1. import type * as Types from "./types.js";
  2. export { URLPattern } from "./types.js";
  3. declare global {
  4. class URLPattern extends Types.URLPattern {}
  5. type URLPatternInit = Types.URLPatternInit;
  6. type URLPatternResult = Types.URLPatternResult;
  7. type URLPatternComponentResult = Types.URLPatternComponentResult;
  8. }