1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 07:27:45 +00:00

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
parent 4f217947b3
commit 6d93692bc5

View file

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