9 lines
247 B
Haxe
9 lines
247 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 ICountQueuingStrategy = {
|
||
var highWaterMark : Float;
|
||
function size(chunk:Dynamic):Int;
|
||
}; |