Simple feedback server
This commit is contained in:
21
feedback-server/externs/js/lib/AsyncGeneratorFunction.hx
Normal file
21
feedback-server/externs/js/lib/AsyncGeneratorFunction.hx
Normal file
@@ -0,0 +1,21 @@
|
||||
package js.lib;
|
||||
|
||||
typedef AsyncGeneratorFunction = {
|
||||
/**
|
||||
Creates a new AsyncGenerator object.
|
||||
**/
|
||||
@:selfCall
|
||||
function call(args:haxe.extern.Rest<Dynamic>):AsyncGenerator<Any, Dynamic, Any>;
|
||||
/**
|
||||
The length of the arguments.
|
||||
**/
|
||||
final length : Float;
|
||||
/**
|
||||
Returns the name of the function.
|
||||
**/
|
||||
final name : String;
|
||||
/**
|
||||
A reference to the prototype.
|
||||
**/
|
||||
final prototype : AsyncGenerator<Any, Dynamic, Any>;
|
||||
};
|
||||
Reference in New Issue
Block a user