macroforge_ts 0.1.14

TypeScript macro expansion engine - write compile-time macros in Rust
Documentation
1
2
3
4
5
6
7
// Re-export Result from @rydshift/mirror for use in generated code
// Using CommonJS for compatibility with the rest of the package
const mirror = require("@rydshift/mirror");
const Result = mirror.Result;

module.exports = { Result };
module.exports.Result = Result;