Files
kiss-flixel/feedback-server/externs/node/HookOptions.hx

18 lines
341 B
Haxe

package node;
/**
Configuration options for hooks.
**/
typedef HookOptions = {
/**
Allows aborting an in-progress hook.
**/
@:optional
var signal : js.html.AbortSignal;
/**
A number of milliseconds the hook will fail after. If unspecified, subtests inherit this
value from their parent.
**/
@:optional
var timeout : Float;
};