Skip to content

Commit 2d3a963

Browse files
fix: InsertPosition (#1425)
Co-authored-by: saschanaz <[email protected]>
1 parent e924870 commit 2d3a963

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

baselines/dom.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18307,7 +18307,6 @@ type HashAlgorithmIdentifier = AlgorithmIdentifier;
1830718307
type HeadersInit = [string, string][] | Record<string, string> | Headers;
1830818308
type IDBValidKey = number | string | Date | BufferSource | IDBValidKey[];
1830918309
type ImageBitmapSource = CanvasImageSource | Blob | ImageData;
18310-
type InsertPosition = "beforebegin" | "afterbegin" | "beforeend" | "afterend";
1831118310
type Int32List = Int32Array | GLint[];
1831218311
type LineAndPositionSetting = number | AutoKeyword;
1831318312
type MediaProvider = MediaStream | MediaSource | Blob;
@@ -18385,6 +18384,7 @@ type IDBTransactionDurability = "default" | "relaxed" | "strict";
1838518384
type IDBTransactionMode = "readonly" | "readwrite" | "versionchange";
1838618385
type ImageOrientation = "flipY" | "none";
1838718386
type ImageSmoothingQuality = "high" | "low" | "medium";
18387+
type InsertPosition = "afterbegin" | "afterend" | "beforebegin" | "beforeend";
1838818388
type IterationCompositeOperation = "accumulate" | "replace";
1838918389
type KeyFormat = "jwk" | "pkcs8" | "raw" | "spki";
1839018390
type KeyType = "private" | "public" | "secret";

inputfiles/addedTypes.jsonc

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,15 @@
273273
},
274274
"enums": {
275275
"enum": {
276+
"InsertPosition": {
277+
"name": "InsertPosition",
278+
"value": [
279+
"beforebegin",
280+
"beforeend",
281+
"afterbegin",
282+
"afterend"
283+
]
284+
},
276285
"ClientType": {
277286
"name": "ClientTypes"
278287
},
@@ -1251,10 +1260,6 @@
12511260
},
12521261
"typedefs": {
12531262
"typedef": [
1254-
{
1255-
"overrideType": "\"beforebegin\" | \"afterbegin\" | \"beforeend\" | \"afterend\"",
1256-
"name": "InsertPosition"
1257-
},
12581263
{
12591264
"type": {
12601265
"0": {

0 commit comments

Comments
 (0)