IO.json 692 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name" : "IO",
  3. "sources" : ["Source/Atomic/IO"],
  4. "classes" : ["Log", "File", "FileSystem", "FileWatcher", "BufferQueue"],
  5. "overloads" : {
  6. "File" : {
  7. "File" : ["Context", "String", "FileMode"]
  8. }
  9. },
  10. "typescript_decl" : {
  11. "File" : [
  12. "readText():string;",
  13. "writeString(text:string):void;"
  14. ],
  15. "FileSystem" : [
  16. "scanDir(pathName:string, filter:string, flags:number, recursive:boolean):Array<string>;"
  17. ]
  18. },
  19. "haxe_decl" : {
  20. "File" : [
  21. "function readText():String;",
  22. "function writeString(text:String):Void;"
  23. ],
  24. "FileSystem" : [
  25. "function scanDir(pathName:String, filter:String, flags:UInt, recursive:Bool):Array<String>;"
  26. ]
  27. }
  28. }