fix(dts): URLPatternComponentResult groups should have possibly undefined key values (#18643)

Closes #18640
This commit is contained in:
David Sherret 2023-04-26 19:15:25 -04:00 committed by GitHub
parent e2761df3fe
commit f4e442da4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 2 deletions

View file

@ -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`. */