7 lines
211 B
Haxe
7 lines
211 B
Haxe
package node;
|
|
|
|
/**
|
|
The hook function. If the hook uses callbacks, the callback function is passed as the
|
|
second argument.
|
|
**/
|
|
typedef HookFn = (done:ts.AnyOf2<() -> Void, (result:Dynamic) -> Void>) -> Dynamic; |