浏览代码

[lua] LFileSystem as import, not typedef (#6360)

* Hide this confusing typedef from API docs
Mark Knol 8 年之前
父节点
当前提交
099864c065
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/lua/_std/sys/FileSystem.hx

+ 1 - 1
std/lua/_std/sys/FileSystem.hx

@@ -26,7 +26,7 @@ import lua.Os;
 import lua.Lib;
 import lua.Table;
 import haxe.io.Path;
-typedef LFileSystem = lua.lib.luv.fs.FileSystem;
+import lua.lib.luv.fs.FileSystem as LFileSystem;
 
 class FileSystem {
 	public static function exists( path : String ) : Bool {