You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
ts2hx should generate a consistent and useful package/module structure similar to what's implemented in hxnodejs (and discussed in HaxeFoundation/hxnodejs#16 before).
basically that means the following:
a module becomes static class with capitalized name (and underscore changed to CamelCase)
types defined in the module go into a subpackage named after the original module
for example, node's "fs" module become Fs.hx, and "fs.Stats" goes to fs/Stats.hx
The text was updated successfully, but these errors were encountered:
ts2hx should generate a consistent and useful package/module structure similar to what's implemented in hxnodejs (and discussed in HaxeFoundation/hxnodejs#16 before).
basically that means the following:
for example, node's "fs" module become
Fs.hx
, and "fs.Stats" goes tofs/Stats.hx
The text was updated successfully, but these errors were encountered: