mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-02 04:27:12 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
16 lines
500 B
Plaintext
16 lines
500 B
Plaintext
// FIXME: Support VoidFunction in the IDL parser
|
|
callback VoidFunction = undefined ();
|
|
|
|
// https://whatpr.org/html/9893/webappapis.html#universalglobalscope-mixin
|
|
interface mixin UniversalGlobalScope {
|
|
// base64 utility methods
|
|
DOMString btoa(DOMString data);
|
|
ByteString atob(DOMString data);
|
|
|
|
// microtask queuing
|
|
undefined queueMicrotask(VoidFunction callback);
|
|
|
|
// structured cloning
|
|
any structuredClone(any value, optional StructuredSerializeOptions options = {});
|
|
};
|