Skip to content

Commit af839d2

Browse files
committed
Convert part 2
1 parent f8a55e2 commit af839d2

File tree

2 files changed

+28
-38
lines changed

2 files changed

+28
-38
lines changed

inputfiles/addedTypes.jsonc

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -23,44 +23,6 @@
2323
}
2424
}
2525
},
26-
"callbackInterfaces": {
27-
"interface": {}
28-
},
29-
"enums": {
30-
"enum": {
31-
"GlobalCompositeOperation": {
32-
"name": "GlobalCompositeOperation",
33-
"value": [
34-
"source-over",
35-
"source-in",
36-
"source-out",
37-
"source-atop",
38-
"destination-over",
39-
"destination-in",
40-
"destination-out",
41-
"destination-atop",
42-
"lighter",
43-
"copy",
44-
"xor",
45-
"multiply",
46-
"screen",
47-
"overlay",
48-
"darken",
49-
"lighten",
50-
"color-dodge",
51-
"color-burn",
52-
"hard-light",
53-
"soft-light",
54-
"difference",
55-
"exclusion",
56-
"hue",
57-
"saturation",
58-
"color",
59-
"luminosity"
60-
]
61-
}
62-
}
63-
},
6426
"interfaces": {
6527
"interface": {
6628
// ImportMeta is not a true DOM interface, but we are forced to declare it as one in order to emit method definitions.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
enum GlobalCompositeOperation {
2+
source-over
3+
source-in
4+
source-out
5+
source-atop
6+
destination-over
7+
destination-in
8+
destination-out
9+
destination-atop
10+
lighter
11+
copy
12+
xor
13+
multiply
14+
screen
15+
overlay
16+
darken
17+
lighten
18+
color-dodge
19+
color-burn
20+
hard-light
21+
soft-light
22+
difference
23+
exclusion
24+
hue
25+
saturation
26+
color
27+
luminosity
28+
}

0 commit comments

Comments
 (0)