google-closure-compiler 20250412.0.0-nightly → 20250413.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (131) hide show
  1. package/README.md +5 -30
  2. package/cli.js +3 -4
  3. package/externs/browser/decorators.js +276 -0
  4. package/externs/browser/deprecated.js +58 -0
  5. package/externs/browser/es6_proxy.js +143 -0
  6. package/externs/browser/fetchapi.js +449 -0
  7. package/externs/browser/fido.js +94 -0
  8. package/externs/browser/flash.js +226 -0
  9. package/externs/browser/gecko_css.js +126 -0
  10. package/externs/browser/gecko_dom.js +479 -0
  11. package/externs/browser/gecko_event.js +86 -0
  12. package/externs/browser/gecko_xml.js +73 -0
  13. package/externs/browser/google_legacy.js +31 -0
  14. package/externs/browser/html5.js +6647 -0
  15. package/externs/browser/ie_css.js +270 -0
  16. package/externs/browser/ie_dom.js +1232 -0
  17. package/externs/browser/ie_event.js +310 -0
  18. package/externs/browser/ie_vml.js +77 -0
  19. package/externs/browser/intersection_observer.js +178 -0
  20. package/externs/browser/intl.js +602 -0
  21. package/externs/browser/iphone.js +204 -0
  22. package/externs/browser/mediakeys.js +305 -0
  23. package/externs/browser/mediasource.js +155 -0
  24. package/externs/browser/nonstandard_anim_timing.js +97 -0
  25. package/externs/browser/nonstandard_audio.js +82 -0
  26. package/externs/browser/nonstandard_console.js +75 -0
  27. package/externs/browser/nonstandard_fileapi.js +1066 -0
  28. package/externs/browser/nonstandard_indexeddb.js +78 -0
  29. package/externs/browser/nonstandard_navigation_timing.js +38 -0
  30. package/externs/browser/nonstandard_selection.js +80 -0
  31. package/externs/browser/page_visibility.js +28 -0
  32. package/externs/browser/streamsapi.js +593 -0
  33. package/externs/browser/svg.js +10016 -0
  34. package/externs/browser/url.js +202 -0
  35. package/externs/browser/v8.js +134 -0
  36. package/externs/browser/w3c_abort.js +89 -0
  37. package/externs/browser/w3c_anim_timing.js +49 -0
  38. package/externs/browser/w3c_aria_mixin.js +286 -0
  39. package/externs/browser/w3c_audio.js +1660 -0
  40. package/externs/browser/w3c_batterystatus.js +85 -0
  41. package/externs/browser/w3c_clipboard.js +74 -0
  42. package/externs/browser/w3c_clipboardevent.js +47 -0
  43. package/externs/browser/w3c_composition_event.js +93 -0
  44. package/externs/browser/w3c_css.js +3790 -0
  45. package/externs/browser/w3c_css3d.js +199 -0
  46. package/externs/browser/w3c_device_sensor_event.js +122 -0
  47. package/externs/browser/w3c_dom1.js +1160 -0
  48. package/externs/browser/w3c_dom2.js +3151 -0
  49. package/externs/browser/w3c_dom3.js +555 -0
  50. package/externs/browser/w3c_dom4.js +289 -0
  51. package/externs/browser/w3c_elementtraversal.js +116 -0
  52. package/externs/browser/w3c_event.js +607 -0
  53. package/externs/browser/w3c_event3.js +77 -0
  54. package/externs/browser/w3c_eventsource.js +110 -0
  55. package/externs/browser/w3c_fileapi.js +302 -0
  56. package/externs/browser/w3c_gamepad.js +113 -0
  57. package/externs/browser/w3c_geolocation.js +130 -0
  58. package/externs/browser/w3c_geometry1.js +899 -0
  59. package/externs/browser/w3c_indexeddb.js +771 -0
  60. package/externs/browser/w3c_keyboardlock.js +47 -0
  61. package/externs/browser/w3c_mediacapabilities.js +206 -0
  62. package/externs/browser/w3c_midi.js +301 -0
  63. package/externs/browser/w3c_navigation.js +72 -0
  64. package/externs/browser/w3c_navigation_timing.js +437 -0
  65. package/externs/browser/w3c_netinfo.js +85 -0
  66. package/externs/browser/w3c_payment_request.js +401 -0
  67. package/externs/browser/w3c_permissions.js +112 -0
  68. package/externs/browser/w3c_permissions_policy.js +78 -0
  69. package/externs/browser/w3c_pointer_events.js +163 -0
  70. package/externs/browser/w3c_pointerlock.js +63 -0
  71. package/externs/browser/w3c_range.js +284 -0
  72. package/externs/browser/w3c_referrer_policy.js +36 -0
  73. package/externs/browser/w3c_requestidlecallback.js +76 -0
  74. package/externs/browser/w3c_rtc.js +3882 -0
  75. package/externs/browser/w3c_screen_orientation.js +53 -0
  76. package/externs/browser/w3c_screen_wake_lock.js +58 -0
  77. package/externs/browser/w3c_selection.js +209 -0
  78. package/externs/browser/w3c_selectors.js +113 -0
  79. package/externs/browser/w3c_serviceworker.js +739 -0
  80. package/externs/browser/w3c_speech.js +426 -0
  81. package/externs/browser/w3c_touch_event.js +296 -0
  82. package/externs/browser/w3c_trusted_types.js +142 -0
  83. package/externs/browser/w3c_vibration.js +38 -0
  84. package/externs/browser/w3c_webcodecs.js +1473 -0
  85. package/externs/browser/w3c_webcrypto.js +839 -0
  86. package/externs/browser/w3c_worklets.js +54 -0
  87. package/externs/browser/w3c_xml.js +533 -0
  88. package/externs/browser/web_animations.js +452 -0
  89. package/externs/browser/web_app_manifest.js +50 -0
  90. package/externs/browser/webassembly.js +223 -0
  91. package/externs/browser/webgl.js +3409 -0
  92. package/externs/browser/webgl2.js +2727 -0
  93. package/externs/browser/webgl2_compute.js +1609 -0
  94. package/externs/browser/webkit_css.js +456 -0
  95. package/externs/browser/webkit_dom.js +118 -0
  96. package/externs/browser/webkit_event.js +46 -0
  97. package/externs/browser/webkit_notifications.js +258 -0
  98. package/externs/browser/webkit_usercontent.js +55 -0
  99. package/externs/browser/weblocksapi.js +125 -0
  100. package/externs/browser/webstorage.js +171 -0
  101. package/externs/browser/whatwg_bitmap_context.js +37 -0
  102. package/externs/browser/whatwg_console.js +152 -0
  103. package/externs/browser/whatwg_encoding.js +99 -0
  104. package/externs/browser/whatwg_file_system.js +296 -0
  105. package/externs/browser/wicg_attribution_reporting.js +42 -0
  106. package/externs/browser/wicg_compression_stream.js +60 -0
  107. package/externs/browser/wicg_constructable_stylesheets.js +60 -0
  108. package/externs/browser/wicg_entries.js +169 -0
  109. package/externs/browser/wicg_file_handling.js +41 -0
  110. package/externs/browser/wicg_file_system_access.js +191 -0
  111. package/externs/browser/wicg_floc.js +41 -0
  112. package/externs/browser/wicg_ink.js +89 -0
  113. package/externs/browser/wicg_resizeobserver.js +100 -0
  114. package/externs/browser/wicg_scheduler.js +62 -0
  115. package/externs/browser/wicg_trust_token.js +89 -0
  116. package/externs/browser/wicg_uach.js +100 -0
  117. package/externs/browser/window.js +190 -0
  118. package/externs/es3.js +2716 -0
  119. package/externs/es5.js +284 -0
  120. package/externs/es6.js +2554 -0
  121. package/externs/es6_collections.js +323 -0
  122. package/index.js +13 -16
  123. package/lib/grunt/index.js +71 -92
  124. package/lib/grunt/vinyl-stream.js +12 -18
  125. package/lib/gulp/concat-to-json.js +30 -18
  126. package/lib/gulp/index.js +174 -181
  127. package/lib/gulp/json-to-vinyl.js +8 -8
  128. package/lib/node/{closure-compiler.js → index.js} +27 -51
  129. package/lib/utils.js +16 -14
  130. package/package.json +19 -16
  131. package/lib/logger.js +0 -89
@@ -0,0 +1,899 @@
1
+ /*
2
+ * Copyright 2018 The Closure Compiler Authors
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+ /**
18
+ * @fileoverview Definitions for W3C's Geometry Interfaces Module Level 1 spec.
19
+ * The whole file has been fully type annotated. Created from
20
+ * https://www.w3.org/TR/geometry-1/
21
+ *
22
+ * @externs
23
+ */
24
+
25
+ /**
26
+ * @deprecated ClientRect has been replaced by DOMRect in the latest spec.
27
+ * @constructor
28
+ * @see https://www.w3.org/TR/cssom-view/#changes-from-2011-08-04
29
+ */
30
+ function ClientRect() {}
31
+
32
+ /**
33
+ * @type {number}
34
+ * @see http://www.w3.org/TR/cssom-view/#dom-clientrect-top
35
+ */
36
+ ClientRect.prototype.top;
37
+
38
+ /**
39
+ * @type {number}
40
+ * @see http://www.w3.org/TR/cssom-view/#dom-clientrect-right
41
+ */
42
+ ClientRect.prototype.right;
43
+
44
+ /**
45
+ * @type {number}
46
+ * @see http://www.w3.org/TR/cssom-view/#dom-clientrect-bottom
47
+ */
48
+ ClientRect.prototype.bottom;
49
+
50
+ /**
51
+ * @type {number}
52
+ * @see http://www.w3.org/TR/cssom-view/#dom-clientrect-left
53
+ */
54
+ ClientRect.prototype.left;
55
+
56
+ /**
57
+ * @type {number}
58
+ * @see http://www.w3.org/TR/cssom-view/#dom-clientrect-width
59
+ */
60
+ ClientRect.prototype.width;
61
+
62
+ /**
63
+ * @type {number}
64
+ * @see http://www.w3.org/TR/cssom-view/#dom-clientrect-height
65
+ */
66
+ ClientRect.prototype.height;
67
+
68
+ /**
69
+ * @constructor
70
+ * @extends {ClientRect} for backwards compatibility
71
+ * @param {number=} x
72
+ * @param {number=} y
73
+ * @param {number=} width
74
+ * @param {number=} height
75
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-domrectreadonly
76
+ */
77
+ function DOMRectReadOnly(x, y, width, height) {}
78
+
79
+ /**
80
+ * @param {!DOMRectInit} other
81
+ * @return {!DOMRectReadOnly}
82
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-fromrect
83
+ */
84
+ DOMRectReadOnly.prototype.fromRect = function(other) {};
85
+
86
+ /**
87
+ * @type {number}
88
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-x
89
+ */
90
+ DOMRectReadOnly.prototype.x;
91
+
92
+ /**
93
+ * @type {number}
94
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-y
95
+ */
96
+ DOMRectReadOnly.prototype.y;
97
+
98
+ /**
99
+ * @type {number}
100
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-width
101
+ */
102
+ DOMRectReadOnly.prototype.width;
103
+
104
+ /**
105
+ * @type {number}
106
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-height
107
+ */
108
+ DOMRectReadOnly.prototype.height;
109
+
110
+ /**
111
+ * @type {number}
112
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-top
113
+ */
114
+ DOMRectReadOnly.prototype.top;
115
+
116
+ /**
117
+ * @type {number}
118
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-right
119
+ */
120
+ DOMRectReadOnly.prototype.right;
121
+
122
+ /**
123
+ * @type {number}
124
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-bottom
125
+ */
126
+ DOMRectReadOnly.prototype.bottom;
127
+
128
+ /**
129
+ * @type {number}
130
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-left
131
+ */
132
+ DOMRectReadOnly.prototype.left;
133
+
134
+ /**
135
+ * @constructor
136
+ * @extends {DOMRectReadOnly}
137
+ * @param {number=} x
138
+ * @param {number=} y
139
+ * @param {number=} width
140
+ * @param {number=} height
141
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrect-domrect
142
+ */
143
+ function DOMRect(x, y, width, height) {}
144
+
145
+ /**
146
+ * @type {number}
147
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrect-x
148
+ */
149
+ DOMRect.prototype.x;
150
+
151
+ /**
152
+ * @type {number}
153
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrect-y
154
+ */
155
+ DOMRect.prototype.y;
156
+
157
+ /**
158
+ * @type {number}
159
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrect-width
160
+ */
161
+ DOMRect.prototype.width;
162
+
163
+ /**
164
+ * @type {number}
165
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrect-height
166
+ */
167
+ DOMRect.prototype.height;
168
+
169
+ /**
170
+ * @type {number}
171
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-top
172
+ */
173
+ DOMRect.prototype.top;
174
+
175
+ /**
176
+ * @type {number}
177
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-right
178
+ */
179
+ DOMRect.prototype.right;
180
+
181
+ /**
182
+ * @type {number}
183
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-bottom
184
+ */
185
+ DOMRect.prototype.bottom;
186
+
187
+ /**
188
+ * @type {number}
189
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectreadonly-left
190
+ */
191
+ DOMRect.prototype.left;
192
+
193
+ /**
194
+ * @constructor
195
+ * @see https://www.w3.org/TR/geometry-1/#dictdef-domrectinit
196
+ */
197
+ function DOMRectInit() {}
198
+
199
+ /**
200
+ * @type {number}
201
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectinit-x
202
+ */
203
+ DOMRectInit.prototype.x;
204
+
205
+ /**
206
+ * @type {number}
207
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectinit-y
208
+ */
209
+ DOMRectInit.prototype.y;
210
+
211
+ /**
212
+ * @type {number}
213
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectinit-width
214
+ */
215
+ DOMRectInit.prototype.width;
216
+
217
+ /**
218
+ * @type {number}
219
+ * @see https://www.w3.org/TR/geometry-1/#dom-domrectinit-height
220
+ */
221
+ DOMRectInit.prototype.height;
222
+
223
+ /**
224
+ * @constructor
225
+ * @param {number=} x
226
+ * @param {number=} y
227
+ * @param {number=} z
228
+ * @param {number=} w
229
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointreadonly-dompointreadonly
230
+ */
231
+ function DOMPointReadOnly(x, y, z, w) {}
232
+
233
+ /**
234
+ * @param {!DOMPointInit} other
235
+ * @return {!DOMPointReadOnly}
236
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointreadonly-frompoint
237
+ */
238
+ DOMPointReadOnly.prototype.fromPoint = function(other) {};
239
+
240
+ /**
241
+ * @type {number}
242
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointreadonly-x
243
+ */
244
+ DOMPointReadOnly.prototype.x;
245
+
246
+ /**
247
+ * @type {number}
248
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointreadonly-y
249
+ */
250
+ DOMPointReadOnly.prototype.y;
251
+
252
+ /**
253
+ * @type {number}
254
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointreadonly-z
255
+ */
256
+ DOMPointReadOnly.prototype.z;
257
+
258
+ /**
259
+ * @type {number}
260
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointreadonly-w
261
+ */
262
+ DOMPointReadOnly.prototype.w;
263
+
264
+ /**
265
+ * @constructor
266
+ * @extends {DOMPointReadOnly}
267
+ * @param {number=} x
268
+ * @param {number=} y
269
+ * @param {number=} z
270
+ * @param {number=} w
271
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompoint-dompoint
272
+ */
273
+ function DOMPoint(x, y, z, w) {}
274
+
275
+ /**
276
+ * @type {number}
277
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompoint-x
278
+ */
279
+ DOMPoint.prototype.x;
280
+
281
+ /**
282
+ * @type {number}
283
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompoint-y
284
+ */
285
+ DOMPoint.prototype.y;
286
+
287
+ /**
288
+ * @type {number}
289
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompoint-z
290
+ */
291
+ DOMPoint.prototype.z;
292
+
293
+ /**
294
+ * @type {number}
295
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompoint-w
296
+ */
297
+ DOMPoint.prototype.w;
298
+
299
+ /**
300
+ * @record
301
+ * @see https://www.w3.org/TR/geometry-1/#dictdef-dompointinit
302
+ */
303
+ function DOMPointInit() {}
304
+
305
+ /**
306
+ * @type {number}
307
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointinit-x
308
+ */
309
+ DOMPointInit.prototype.x;
310
+
311
+ /**
312
+ * @type {number}
313
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointinit-y
314
+ */
315
+ DOMPointInit.prototype.y;
316
+
317
+ /**
318
+ * @type {number}
319
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointinit-z
320
+ */
321
+ DOMPointInit.prototype.z;
322
+
323
+ /**
324
+ * @type {number}
325
+ * @see https://www.w3.org/TR/geometry-1/#dom-dompointinit-w
326
+ */
327
+ DOMPointInit.prototype.w;
328
+
329
+ /**
330
+ * @constructor
331
+ * @implements {DOMMatrixInit}
332
+ * @param {string|Array<number>} init
333
+ * @see https://www.w3.org/TR/geometry-1/#dommatrixreadonly
334
+ */
335
+ function DOMMatrixReadOnly(init) {}
336
+
337
+ /**
338
+ * @param {!DOMMatrixInit} other
339
+ * @return {!DOMMatrixReadOnly}
340
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-frommatrix
341
+ */
342
+ DOMMatrixReadOnly.fromMatrix = function(other) {};
343
+
344
+ /**
345
+ * @param {!Float32Array} array32
346
+ * @return {!DOMMatrixReadOnly}
347
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-fromfloat32array
348
+ */
349
+ DOMMatrixReadOnly.fromFloat32Array = function(array32) {};
350
+
351
+ /**
352
+ * @param {!Float64Array} array64
353
+ * @return {!DOMMatrixReadOnly}
354
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-fromfloat64array
355
+ */
356
+ DOMMatrixReadOnly.fromFloat64Array = function(array64) {};
357
+
358
+ /**
359
+ * @type {number}
360
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-a
361
+ */
362
+ DOMMatrixReadOnly.prototype.a;
363
+
364
+ /**
365
+ * @type {number}
366
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-b
367
+ */
368
+ DOMMatrixReadOnly.prototype.b;
369
+
370
+ /**
371
+ * @type {number}
372
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-c
373
+ */
374
+ DOMMatrixReadOnly.prototype.c;
375
+
376
+ /**
377
+ * @type {number}
378
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-d
379
+ */
380
+ DOMMatrixReadOnly.prototype.d;
381
+
382
+ /**
383
+ * @type {number}
384
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-e
385
+ */
386
+ DOMMatrixReadOnly.prototype.e;
387
+
388
+ /**
389
+ * @type {number}
390
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-f
391
+ */
392
+ DOMMatrixReadOnly.prototype.f;
393
+
394
+ /**
395
+ * @type {number}
396
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m11
397
+ */
398
+ DOMMatrixReadOnly.prototype.m11;
399
+
400
+ /**
401
+ * @type {number}
402
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m12
403
+ */
404
+ DOMMatrixReadOnly.prototype.m12;
405
+
406
+ /**
407
+ * @type {number}
408
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m13
409
+ */
410
+ DOMMatrixReadOnly.prototype.m13;
411
+
412
+ /**
413
+ * @type {number}
414
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m14
415
+ */
416
+ DOMMatrixReadOnly.prototype.m14;
417
+
418
+ /**
419
+ * @type {number}
420
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m21
421
+ */
422
+ DOMMatrixReadOnly.prototype.m21;
423
+
424
+ /**
425
+ * @type {number}
426
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m22
427
+ */
428
+ DOMMatrixReadOnly.prototype.m22;
429
+
430
+ /**
431
+ * @type {number}
432
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m23
433
+ */
434
+ DOMMatrixReadOnly.prototype.m23;
435
+
436
+ /**
437
+ * @type {number}
438
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m24
439
+ */
440
+ DOMMatrixReadOnly.prototype.m24;
441
+
442
+ /**
443
+ * @type {number}
444
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m31
445
+ */
446
+ DOMMatrixReadOnly.prototype.m31;
447
+
448
+ /**
449
+ * @type {number}
450
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m32
451
+ */
452
+ DOMMatrixReadOnly.prototype.m32;
453
+
454
+ /**
455
+ * @type {number}
456
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m33
457
+ */
458
+ DOMMatrixReadOnly.prototype.m33;
459
+
460
+ /**
461
+ * @type {number}
462
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m34
463
+ */
464
+ DOMMatrixReadOnly.prototype.m34;
465
+
466
+ /**
467
+ * @type {number}
468
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m41
469
+ */
470
+ DOMMatrixReadOnly.prototype.m41;
471
+
472
+ /**
473
+ * @type {number}
474
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m42
475
+ */
476
+ DOMMatrixReadOnly.prototype.m42;
477
+
478
+ /**
479
+ * @type {number}
480
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m43
481
+ */
482
+ DOMMatrixReadOnly.prototype.m43;
483
+
484
+ /**
485
+ * @type {number}
486
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-m44
487
+ */
488
+ DOMMatrixReadOnly.prototype.m44;
489
+
490
+ /**
491
+ * @type {boolean}
492
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-is2d
493
+ */
494
+ DOMMatrixReadOnly.prototype.is2D;
495
+
496
+ /**
497
+ * @type {boolean}
498
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-isidentity
499
+ */
500
+ DOMMatrixReadOnly.prototype.isIdentity;
501
+
502
+ /**
503
+ * @param {number=} tx
504
+ * @param {number=} ty
505
+ * @param {number=} tz
506
+ * @return {!DOMMatrix}
507
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-translate
508
+ */
509
+ DOMMatrixReadOnly.prototype.translate = function(tx, ty, tz) {};
510
+
511
+ /**
512
+ * @param {number=} scaleX
513
+ * @param {number=} scaleY
514
+ * @param {number=} scaleZ
515
+ * @param {number=} originX
516
+ * @param {number=} originY
517
+ * @param {number=} originZ
518
+ * @return {!DOMMatrix}
519
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-scale
520
+ */
521
+ DOMMatrixReadOnly.prototype.scale = function(
522
+ scaleX, scaleY, scaleZ, originX, originY, originZ) {};
523
+
524
+ /**
525
+ * @param {number=} scaleX
526
+ * @param {number=} scaleY
527
+ * @return {!DOMMatrix}
528
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-scalenonuniform
529
+ */
530
+ DOMMatrixReadOnly.prototype.scaleNonUniform = function(scaleX, scaleY) {};
531
+
532
+ /**
533
+ * @param {number=} scale
534
+ * @param {number=} originX
535
+ * @param {number=} originY
536
+ * @param {number=} originZ
537
+ * @return {!DOMMatrix}
538
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-scale3d
539
+ */
540
+ DOMMatrixReadOnly.prototype.scale3d = function(
541
+ scale, originX, originY, originZ) {};
542
+
543
+ /**
544
+ * @param {number=} rotX
545
+ * @param {number=} rotY
546
+ * @param {number=} rotZ
547
+ * @return {!DOMMatrix}
548
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-rotate
549
+ */
550
+ DOMMatrixReadOnly.prototype.rotate = function(rotX, rotY, rotZ) {};
551
+
552
+ /**
553
+ * @param {number=} x
554
+ * @param {number=} y
555
+ * @return {!DOMMatrix}
556
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-rotatefromvector
557
+ */
558
+ DOMMatrixReadOnly.prototype.rotateFromVector = function(x, y) {};
559
+
560
+ /**
561
+ * @param {number=} x
562
+ * @param {number=} y
563
+ * @param {number=} z
564
+ * @param {number=} angle
565
+ * @return {!DOMMatrix}
566
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-rotateaxisangle
567
+ */
568
+ DOMMatrixReadOnly.prototype.rotateAxisAngle = function(x, y, z, angle) {};
569
+
570
+ /**
571
+ * @param {number=} sx
572
+ * @return {!DOMMatrix}
573
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-skewx
574
+ */
575
+ DOMMatrixReadOnly.prototype.skewX = function(sx) {};
576
+
577
+ /**
578
+ * @param {number=} sy
579
+ * @return {!DOMMatrix}
580
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-skewy
581
+ */
582
+ DOMMatrixReadOnly.prototype.skewY = function(sy) {};
583
+
584
+ /**
585
+ * @param {!DOMMatrixInit} other
586
+ * @return {!DOMMatrix}
587
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-multiply
588
+ */
589
+ DOMMatrixReadOnly.prototype.multiply = function(other) {};
590
+
591
+ /**
592
+ * @return {!DOMMatrix}
593
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-flipx
594
+ */
595
+ DOMMatrixReadOnly.prototype.flipX = function() {};
596
+
597
+ /**
598
+ * @return {!DOMMatrix}
599
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-flipy
600
+ */
601
+ DOMMatrixReadOnly.prototype.flipY = function() {};
602
+
603
+ /**
604
+ * @return {!DOMMatrix}
605
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-inverse
606
+ */
607
+ DOMMatrixReadOnly.prototype.inverse = function() {};
608
+
609
+ /**
610
+ * @param {!DOMPointInit} point
611
+ * @return {!DOMPoint}
612
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-transformpoint
613
+ */
614
+ DOMMatrixReadOnly.prototype.transformPoint = function(point) {};
615
+
616
+ /**
617
+ * @return {!Float32Array}
618
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-tofloat32array
619
+ */
620
+ DOMMatrixReadOnly.prototype.toFloat32Array = function() {};
621
+
622
+ /**
623
+ * @return {!Float64Array}
624
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixreadonly-tofloat64array
625
+ */
626
+ DOMMatrixReadOnly.prototype.toFloat64Array = function() {};
627
+
628
+ /**
629
+ * @constructor
630
+ * @extends {DOMMatrixReadOnly}
631
+ * @param {string|Array<number>} init
632
+ * @see https://www.w3.org/TR/geometry-1/#dommatrix
633
+ */
634
+ function DOMMatrix(init) {}
635
+
636
+ /**
637
+ * @param {!DOMMatrixInit} other
638
+ * @return {!DOMMatrix}
639
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-frommatrix
640
+ */
641
+ DOMMatrix.fromMatrix = function(other) {};
642
+
643
+ /**
644
+ * @param {!Float32Array} array32
645
+ * @return {!DOMMatrix}
646
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-fromfloat32array
647
+ */
648
+ DOMMatrix.fromFloat32Array = function(array32) {};
649
+
650
+ /**
651
+ * @param {!Float64Array} array64
652
+ * @return {!DOMMatrix}
653
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-fromfloat64array
654
+ */
655
+ DOMMatrix.fromFloat64Array = function(array64) {};
656
+
657
+ /**
658
+ * @param {!DOMMatrixInit} other
659
+ * @return {!DOMMatrix}
660
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-multiply
661
+ */
662
+ DOMMatrix.prototype.multiplySelf = function(other) {};
663
+
664
+ /**
665
+ * @param {!DOMMatrixInit} other
666
+ * @return {!DOMMatrix}
667
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-premultiply
668
+ */
669
+ DOMMatrix.prototype.preMultiplySelf = function(other) {};
670
+
671
+ /**
672
+ * @param {number=} tx
673
+ * @param {number=} ty
674
+ * @param {number=} tz
675
+ * @return {!DOMMatrix}
676
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-translate
677
+ */
678
+ DOMMatrix.prototype.translateSelf = function(tx, ty, tz) {};
679
+
680
+ /**
681
+ * @param {number=} scaleX
682
+ * @param {number=} scaleY
683
+ * @param {number=} scaleZ
684
+ * @param {number=} originX
685
+ * @param {number=} originY
686
+ * @param {number=} originZ
687
+ * @return {!DOMMatrix}
688
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-scale
689
+ */
690
+ DOMMatrix.prototype.scaleSelf = function(
691
+ scaleX, scaleY, scaleZ, originX, originY, originZ) {};
692
+
693
+ /**
694
+ * @param {number=} scale
695
+ * @param {number=} originX
696
+ * @param {number=} originY
697
+ * @param {number=} originZ
698
+ * @return {!DOMMatrix}
699
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-scale3d
700
+ */
701
+ DOMMatrix.prototype.scale3dSelf = function(scale, originX, originY, originZ) {};
702
+
703
+ /**
704
+ * @param {number=} rotX
705
+ * @param {number=} rotY
706
+ * @param {number=} rotZ
707
+ * @return {!DOMMatrix}
708
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-rotate
709
+ */
710
+ DOMMatrix.prototype.rotateSelf = function(rotX, rotY, rotZ) {};
711
+
712
+ /**
713
+ * @param {number=} x
714
+ * @param {number=} y
715
+ * @return {!DOMMatrix}
716
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-rotatefromvector
717
+ */
718
+ DOMMatrix.prototype.rotateFromVectorSelf = function(x, y) {};
719
+
720
+ /**
721
+ * @param {number=} x
722
+ * @param {number=} y
723
+ * @param {number=} z
724
+ * @param {number=} angle
725
+ * @return {!DOMMatrix}
726
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-rotateaxisangle
727
+ */
728
+ DOMMatrix.prototype.rotateAxisAngleSelf = function(x, y, z, angle) {};
729
+
730
+ /**
731
+ * @param {number=} sx
732
+ * @return {!DOMMatrix}
733
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-skewx
734
+ */
735
+ DOMMatrix.prototype.skewXSelf = function(sx) {};
736
+
737
+ /**
738
+ * @param {number=} sy
739
+ * @return {!DOMMatrix}
740
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-skewy
741
+ */
742
+ DOMMatrix.prototype.skewYSelf = function(sy) {};
743
+
744
+ /**
745
+ * @return {!DOMMatrix}
746
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix-inverse
747
+ */
748
+ DOMMatrix.prototype.invertSelf = function() {};
749
+
750
+ /**
751
+ * @record
752
+ * @see https://www.w3.org/TR/geometry-1/#dictdef-dommatrix2dinit
753
+ */
754
+ function DOMMatrix2DInit() {}
755
+
756
+ /**
757
+ * @type {number}
758
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-a
759
+ */
760
+ DOMMatrix2DInit.prototype.a;
761
+
762
+ /**
763
+ * @type {number}
764
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-b
765
+ */
766
+ DOMMatrix2DInit.prototype.b;
767
+
768
+ /**
769
+ * @type {number}
770
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-c
771
+ */
772
+ DOMMatrix2DInit.prototype.c;
773
+
774
+ /**
775
+ * @type {number}
776
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-d
777
+ */
778
+ DOMMatrix2DInit.prototype.d;
779
+
780
+ /**
781
+ * @type {number}
782
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-e
783
+ */
784
+ DOMMatrix2DInit.prototype.e;
785
+
786
+ /**
787
+ * @type {number}
788
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-f
789
+ */
790
+ DOMMatrix2DInit.prototype.f;
791
+
792
+ /**
793
+ * @type {number}
794
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-m11
795
+ */
796
+ DOMMatrix2DInit.prototype.m11;
797
+
798
+ /**
799
+ * @type {number}
800
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-m12
801
+ */
802
+ DOMMatrix2DInit.prototype.m12;
803
+
804
+ /**
805
+ * @type {number}
806
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-m21
807
+ */
808
+ DOMMatrix2DInit.prototype.m21;
809
+
810
+ /**
811
+ * @type {number}
812
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-m22
813
+ */
814
+ DOMMatrix2DInit.prototype.m22;
815
+
816
+ /**
817
+ * @type {number}
818
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-m41
819
+ */
820
+ DOMMatrix2DInit.prototype.m41;
821
+
822
+ /**
823
+ * @type {number}
824
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrix2dinit-m42
825
+ */
826
+ DOMMatrix2DInit.prototype.m42;
827
+
828
+ /**
829
+ * @record
830
+ * @extends {DOMMatrix2DInit}
831
+ * @see https://www.w3.org/TR/geometry-1/#dictdef-dommatrix
832
+ */
833
+ function DOMMatrixInit() {}
834
+
835
+ /**
836
+ * @type {number}
837
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m13
838
+ */
839
+ DOMMatrixInit.prototype.m13;
840
+
841
+ /**
842
+ * @type {number}
843
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m14
844
+ */
845
+ DOMMatrixInit.prototype.m14;
846
+
847
+ /**
848
+ * @type {number}
849
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m23
850
+ */
851
+ DOMMatrixInit.prototype.m23;
852
+
853
+ /**
854
+ * @type {number}
855
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m24
856
+ */
857
+ DOMMatrixInit.prototype.m24;
858
+
859
+ /**
860
+ * @type {number}
861
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m31
862
+ */
863
+ DOMMatrixInit.prototype.m31;
864
+
865
+ /**
866
+ * @type {number}
867
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m32
868
+ */
869
+ DOMMatrixInit.prototype.m32;
870
+
871
+ /**
872
+ * @type {number}
873
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m33
874
+ */
875
+ DOMMatrixInit.prototype.m33;
876
+
877
+ /**
878
+ * @type {number}
879
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m34
880
+ */
881
+ DOMMatrixInit.prototype.m34;
882
+
883
+ /**
884
+ * @type {number}
885
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m43
886
+ */
887
+ DOMMatrixInit.prototype.m43;
888
+
889
+ /**
890
+ * @type {number}
891
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-m44
892
+ */
893
+ DOMMatrixInit.prototype.m44;
894
+
895
+ /**
896
+ * @type {boolean}
897
+ * @see https://www.w3.org/TR/geometry-1/#dom-dommatrixinit-is2d
898
+ */
899
+ DOMMatrixInit.prototype.is2D;