Files
kiss-flixel/feedback-server/externs/js/html/ByteLengthQueuingStrategy.hx

11 lines
414 B
Haxe
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package js.html;
/**
This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams.
**/
@:native("ByteLengthQueuingStrategy") extern class ByteLengthQueuingStrategy {
function new(options:{ var highWaterMark : Float; });
var highWaterMark : Float;
function size(chunk:js.lib.ArrayBufferView):Float;
static var prototype : ByteLengthQueuingStrategy;
}