14 lines
401 B
Haxe
14 lines
401 B
Haxe
package node.http2;
|
|
|
|
typedef ServerStreamFileResponseOptionsWithError = {
|
|
@:optional
|
|
function onError(err:global.nodejs.ErrnoException):Void;
|
|
@:optional
|
|
function statCheck(stats:node.fs.Stats, headers:node.http.OutgoingHttpHeaders, statOptions:StatOptions):ts.AnyOf2<Bool, ts.Undefined>;
|
|
@:optional
|
|
var waitForTrailers : Bool;
|
|
@:optional
|
|
var offset : Float;
|
|
@:optional
|
|
var length : Float;
|
|
}; |