9 lines
269 B
Haxe
9 lines
269 B
Haxe
package js.html;
|
||
|
||
/**
|
||
This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams.
|
||
**/
|
||
typedef IByteLengthQueuingStrategy = {
|
||
var highWaterMark : Float;
|
||
function size(chunk:js.lib.ArrayBufferView):Float;
|
||
}; |