LibWeb: Add IDL definition for 'Function'

This is used in ByteLengthQueuingStrategy and CountQueuingStrategy
in the Streams spec.
This commit is contained in:
Shannon Booth 2023-06-19 19:52:44 +12:00 committed by Andreas Kling
commit 6d93692bc5
Notes: sideshowbarker 2024-07-17 02:57:43 +09:00

View file

@ -0,0 +1,4 @@
// https://webidl.spec.whatwg.org/#Function
// FIXME: This should be a builtin type.
callback Function = any (any... arguments);