├── .gitignore ├── README.md ├── bin ├── index.html └── test.json ├── json2typedef.hxproj └── src ├── Main.hx ├── TdObjectData.hx ├── TdParser.hx ├── TdPrinter.hx ├── TdType.hx └── TdTypeTools.hx /.gitignore: -------------------------------------------------------------------------------- 1 | /bin/json2typedef.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/README.md -------------------------------------------------------------------------------- /bin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/bin/index.html -------------------------------------------------------------------------------- /bin/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/bin/test.json -------------------------------------------------------------------------------- /json2typedef.hxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/json2typedef.hxproj -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/src/Main.hx -------------------------------------------------------------------------------- /src/TdObjectData.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/src/TdObjectData.hx -------------------------------------------------------------------------------- /src/TdParser.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/src/TdParser.hx -------------------------------------------------------------------------------- /src/TdPrinter.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/src/TdPrinter.hx -------------------------------------------------------------------------------- /src/TdType.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/src/TdType.hx -------------------------------------------------------------------------------- /src/TdTypeTools.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YAL-Haxe/json2typedef/HEAD/src/TdTypeTools.hx --------------------------------------------------------------------------------