Idle.hx 243 B

123456789
  1. package lua.lib.luv;
  2. @:luaRequire("luv")
  3. extern class Idle extends Handle {
  4. static function new_idle() : Idle;
  5. @:native("new_idle") function new() : Void;
  6. function start(cb : Void->Void) : Int;
  7. function stop(cb : Void->Void) : Int;
  8. }