Skip to content

Commit 545554b

Browse files
authored
Fix OverconstrainedError superclass (#1662)
Co-authored-by: saschanaz <[email protected]>
1 parent 87cdc80 commit 545554b

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16740,7 +16740,7 @@ declare var OscillatorNode: {
1674016740
};
1674116741

1674216742
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError) */
16743-
interface OverconstrainedError extends Error {
16743+
interface OverconstrainedError extends DOMException {
1674416744
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/OverconstrainedError/constraint) */
1674516745
readonly constraint: string;
1674616746
}

inputfiles/addedTypes.jsonc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1126,10 +1126,6 @@
11261126
]
11271127
}
11281128
},
1129-
"OverconstrainedError": {
1130-
"name": "OverconstrainedError",
1131-
"extends": "Error"
1132-
},
11331129
"ProgressEvent": {
11341130
"typeParameters": [
11351131
{

0 commit comments

Comments
 (0)