IO.json 739 B

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