8 lines
196 B
Haxe
8 lines
196 B
Haxe
package js.html;
|
|
|
|
typedef ReadableStreamDefaultController<R> = {
|
|
final desiredSize : Null<Float>;
|
|
function close():Void;
|
|
function enqueue(chunk:R):Void;
|
|
function error(?error:Dynamic):Void;
|
|
}; |