FileSystemPoll.hx 314 B

12345678910
  1. package lua.lib.luv.fs;
  2. @:luaRequire("luv")
  3. extern class FileSystemPoll {
  4. static function new_fs_poll() : FileSystemPoll;
  5. @:native("new_fs_poll") function new() : Void;
  6. function start(path : String, interval : Int, cb : String->Bool->Void) : Bool;
  7. function stop() : Bool;
  8. function getpath() : String;
  9. }