Browse Source

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

* Hide this confusing typedef from API docs
Mark Knol 8 years ago
parent
commit
099864c065
1 changed files with 1 additions and 1 deletions
  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.Lib;
 import lua.Table;
 import lua.Table;
 import haxe.io.Path;
 import haxe.io.Path;
-typedef LFileSystem = lua.lib.luv.fs.FileSystem;
+import lua.lib.luv.fs.FileSystem as LFileSystem;
 
 
 class FileSystem {
 class FileSystem {
 	public static function exists( path : String ) : Bool {
 	public static function exists( path : String ) : Bool {