Skip to content

Commit b368e19

Browse files
authored
Merge pull request #298 from alisabzevari/TS-18524-EcKeyImportParams
Change EcKeyImportParams to extend Algorithm
2 parents 59f63d0 + 3505b63 commit b368e19

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

baselines/dom.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14026,7 +14026,7 @@ interface EcKeyAlgorithm extends KeyAlgorithm {
1402614026
typedCurve: string;
1402714027
}
1402814028

14029-
interface EcKeyImportParams {
14029+
interface EcKeyImportParams extends Algorithm {
1403014030
namedCurve: string;
1403114031
}
1403214032

baselines/webworker.generated.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1642,7 +1642,7 @@ interface EcKeyAlgorithm extends KeyAlgorithm {
16421642
typedCurve: string;
16431643
}
16441644

1645-
interface EcKeyImportParams {
1645+
interface EcKeyImportParams extends Algorithm {
16461646
namedCurve: string;
16471647
}
16481648

inputfiles/addedTypes.json

+1
Original file line numberDiff line numberDiff line change
@@ -853,6 +853,7 @@
853853
{
854854
"kind": "interface",
855855
"name": "EcKeyImportParams",
856+
"extends": "Algorithm",
856857
"properties": [
857858
{
858859
"name": "namedCurve",

0 commit comments

Comments
 (0)