Files
kiss-flixel/feedback-server/externs/node/stream/web/IByteLengthQueuingStrategy.hx

10 lines
280 B
Haxe

package node.stream.web;
/**
This Streams API interface provides a built-in byte length queuing
strategy that can be used when constructing streams.
**/
typedef IByteLengthQueuingStrategy = {
final highWaterMark : Float;
function size(?chunk:js.lib.ArrayBufferView):Float;
};