We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, Is it possible to define somehow module/namespace on JS level? Let's say I have:
mod features { #[node_bindgen] pub fn feature_a() -> Result<...> { .... } } mod tools { #[node_bindgen] pub fn tool_a() -> Result<...> { .... } }
On js level I would like to see it as:
let rustcore = require('rustcore.node'); rustcore.features.feature_a(); rustcore.tools.tool_a();
Sorry if question is trivial, but didn't find any kind of solution for that.
The text was updated successfully, but these errors were encountered:
Sorry, not yet. Would love contribution though
Sorry, something went wrong.
No branches or pull requests
Hello,
Is it possible to define somehow module/namespace on JS level?
Let's say I have:
On js level I would like to see it as:
Sorry if question is trivial, but didn't find any kind of solution for that.
The text was updated successfully, but these errors were encountered: