forked from rescript-lang/experimental-rescript-webapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWindow.res
More file actions
519 lines (445 loc) · 14.2 KB
/
Window.res
File metadata and controls
519 lines (445 loc) · 14.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
open DOMAPI
open CanvasAPI
open FileAPI
open ChannelMessagingAPI
open FetchAPI
include EventTarget.Impl({
type t = window
})
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/reportError)
*/
@send
external reportError: (window, JSON.t) => unit = "reportError"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/btoa)
*/
@send
external btoa: (window, string) => string = "btoa"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/atob)
*/
@send
external atob: (window, string) => string = "atob"
/**
Executes a function after a delay given in milliseconds expires.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/setTimeout)
*/
@send
external setTimeout: (window, ~handler: unit => unit, ~timeout: int=?) => timeoutId = "setTimeout"
/**
Cancels the execution of a timeout created with setTimeout.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/clearTimeout)
*/
@send
external clearTimeout: (window, timeoutId) => unit = "clearTimeout"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/setInterval)
*/
@send
external setInterval: (window, ~handler: string, ~timeout: int=?) => int = "setInterval"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/setInterval)
*/
@send
external setInterval2: (window, ~handler: unit => unit, ~timeout: int=?) => int = "setInterval"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/clearInterval)
*/
@send
external clearInterval: (window, int) => unit = "clearInterval"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/queueMicrotask)
*/
@send
external queueMicrotask: (window, voidFunction) => unit = "queueMicrotask"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap: (
window,
~image: htmlImageElement,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap2: (
window,
~image: svgImageElement,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap3: (
window,
~image: htmlVideoElement,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap4: (
window,
~image: htmlCanvasElement,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap5: (
window,
~image: imageBitmap,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap6: (
window,
~image: offscreenCanvas,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap7: (
window,
~image: videoFrame,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap8: (
window,
~image: blob,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap9: (
window,
~image: imageData,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap10: (
window,
~image: htmlImageElement,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap11: (
window,
~image: svgImageElement,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap12: (
window,
~image: htmlVideoElement,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap13: (
window,
~image: htmlCanvasElement,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap14: (
window,
~image: imageBitmap,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap15: (
window,
~image: offscreenCanvas,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap16: (
window,
~image: videoFrame,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap17: (
window,
~image: blob,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/createImageBitmap)
*/
@send
external createImageBitmap18: (
window,
~image: imageData,
~sx: int,
~sy: int,
~sw: int,
~sh: int,
~options: imageBitmapOptions=?,
) => promise<imageBitmap> = "createImageBitmap"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/structuredClone)
*/
@send
external structuredClone: (window, 't, ~options: structuredSerializeOptions=?) => 't =
"structuredClone"
/**
`fetch(window, string, init)`
Starts the process of fetching a resource from the network,
returning a promise that is fulfilled once the response is available.
```res
let response = await window->Window.fetch("https://rescript-lang.org")
```
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/fetch)
*/
@send
external fetch: (window, string, ~init: requestInit=?) => promise<response> = "fetch"
/**
`fetch_withRequest(window, request, init)`
Starts the process of fetching a resource from the network,
returning a promise that is fulfilled once the response is available.
```res
let response = await window->Window.fetch(myRequest)
```
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/fetch)
*/
@send
external fetch_withRequest: (window, request, ~init: requestInit=?) => promise<response> = "fetch"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/requestAnimationFrame)
*/
@send
external requestAnimationFrame: (window, frameRequestCallback) => int = "requestAnimationFrame"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/DedicatedWorkerGlobalScope/cancelAnimationFrame)
*/
@send
external cancelAnimationFrame: (window, int) => unit = "cancelAnimationFrame"
/**
Closes the window.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/close)
*/
@send
external close: window => unit = "close"
/**
Cancels the document load.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/stop)
*/
@send
external stop: window => unit = "stop"
/**
Moves the focus to the window's browsing context, if any.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/focus)
*/
@send
external focus: window => unit = "focus"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/open)
*/
@send
external open_: (window, ~url: string=?, ~target: string=?, ~features: string=?) => window = "open"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/alert)
*/
@send
external alert: window => unit = "alert"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/alert)
*/
@send
external alert2: (window, string) => unit = "alert"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/confirm)
*/
@send
external confirm: (window, ~message: string=?) => bool = "confirm"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/prompt)
*/
@send
external prompt: (window, ~message: string=?, ~default: string=?) => string = "prompt"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/print)
*/
@send
external print: window => unit = "print"
/**
Posts a message to the given window. Messages can be structured objects, e.g. nested objects and arrays, can contain JavaScript values (strings, numbers, Date objects, etc), and can contain certain data objects such as File Blob, FileList, and ArrayBuffer objects.
Objects listed in the transfer member of options are transferred, not just cloned, meaning that they are no longer usable on the sending side.
A target origin can be specified using the targetOrigin member of options. If not provided, it defaults to "/". This default restricts the message to same-origin targets only.
If the origin of the target window doesn't match the given target origin, the message is discarded, to avoid information leakage. To send the message to the target regardless of origin, set the target origin to "*".
Throws a "DataCloneError" DOMException if transfer array contains duplicate objects or if message could not be cloned.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/postMessage)
*/
@send
external postMessage: (
window,
~message: JSON.t,
~targetOrigin: string,
~transfer: array<Dict.t<string>>=?,
) => unit = "postMessage"
/**
Posts a message to the given window. Messages can be structured objects, e.g. nested objects and arrays, can contain JavaScript values (strings, numbers, Date objects, etc), and can contain certain data objects such as File Blob, FileList, and ArrayBuffer objects.
Objects listed in the transfer member of options are transferred, not just cloned, meaning that they are no longer usable on the sending side.
A target origin can be specified using the targetOrigin member of options. If not provided, it defaults to "/". This default restricts the message to same-origin targets only.
If the origin of the target window doesn't match the given target origin, the message is discarded, to avoid information leakage. To send the message to the target regardless of origin, set the target origin to "*".
Throws a "DataCloneError" DOMException if transfer array contains duplicate objects or if message could not be cloned.
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/postMessage)
*/
@send
external postMessage2: (window, ~message: JSON.t, ~options: windowPostMessageOptions=?) => unit =
"postMessage"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/matchMedia)
*/
@send
external matchMedia: (window, string) => mediaQueryList = "matchMedia"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/moveTo)
*/
@send
external moveTo: (window, ~x: int, ~y: int) => unit = "moveTo"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/moveBy)
*/
@send
external moveBy: (window, ~x: int, ~y: int) => unit = "moveBy"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/resizeTo)
*/
@send
external resizeTo: (window, ~width: int, ~height: int) => unit = "resizeTo"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/resizeBy)
*/
@send
external resizeBy: (window, ~x: int, ~y: int) => unit = "resizeBy"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/scroll)
*/
@send
external scroll: (window, ~options: scrollToOptions=?) => unit = "scroll"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/scroll)
*/
@send
external scroll2: (window, ~x: float, ~y: float) => unit = "scroll"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/scrollTo)
*/
@send
external scrollTo: (window, ~options: scrollToOptions=?) => unit = "scrollTo"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/scrollTo)
*/
@send
external scrollTo2: (window, ~x: float, ~y: float) => unit = "scrollTo"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/scrollBy)
*/
@send
external scrollBy: (window, ~options: scrollToOptions=?) => unit = "scrollBy"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/scrollBy)
*/
@send
external scrollBy2: (window, ~x: float, ~y: float) => unit = "scrollBy"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/getComputedStyle)
*/
@send
external getComputedStyle: (window, ~elt: element, ~pseudoElt: string=?) => cssStyleDeclaration =
"getComputedStyle"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/requestIdleCallback)
*/
@send
external requestIdleCallback: (
window,
~callback: idleRequestCallback,
~options: idleRequestOptions=?,
) => int = "requestIdleCallback"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/cancelIdleCallback)
*/
@send
external cancelIdleCallback: (window, int) => unit = "cancelIdleCallback"
/**
[Read more on MDN](https://developer.mozilla.org/docs/Web/API/Window/getSelection)
*/
@send
external getSelection: window => selection = "getSelection"