summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.dom.extras.d.ts
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-04-26 19:15:25 -0400
committerGitHub <noreply@github.com>2023-04-26 19:15:25 -0400
commitf4e442da4d948126e1db8cbb9905c5d140d94e1d (patch)
tree7379988639489c4aded65f02a3c6c565950e2a32 /cli/tsc/dts/lib.dom.extras.d.ts
parente2761df3fe2a457948948dcd38fb4f7e02cd350e (diff)
fix(dts): `URLPatternComponentResult` groups should have possibly undefined key values (#18643)
Closes #18640
Diffstat (limited to 'cli/tsc/dts/lib.dom.extras.d.ts')
-rw-r--r--cli/tsc/dts/lib.dom.extras.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc/dts/lib.dom.extras.d.ts b/cli/tsc/dts/lib.dom.extras.d.ts
index 2c593b2cb..9116596a6 100644
--- a/cli/tsc/dts/lib.dom.extras.d.ts
+++ b/cli/tsc/dts/lib.dom.extras.d.ts
@@ -23,7 +23,7 @@ declare type URLPatternInput = string | URLPatternInit;
declare interface URLPatternComponentResult {
input: string;
- groups: Record<string, string>;
+ groups: Record<string, string | undefined>;
}
/** `URLPatternResult` is the object returned from `URLPattern.exec`. */