blob: 429e17c7da62d3c8a4ccfdc0287947c6a7df0cf0 (
plain)
1
2
3
4
5
6
7
8
9
|
import type * as Types from "./types.js";
export { URLPattern } from "./types.js";
declare global {
class URLPattern extends Types.URLPattern {}
type URLPatternInit = Types.URLPatternInit;
type URLPatternResult = Types.URLPatternResult;
type URLPatternComponentResult = Types.URLPatternComponentResult;
}
|