UNPKG

@helios-lang/compiler

Version:

Helios is a Domain Specific Language that compiles to Plutus-Core (i.e. Cardano on-chain validator scripts). Helios is a non-Haskell alternative to Plutus. With this library you can compile Helios scripts and build Cardano transactions, all you need to bu

15 lines 361 B
/** * @import { Source, Word } from "@helios-lang/compiler-utils" */ /** * The entrypoint module */ export class MainModule extends Module { /** * @type {FuncStatement} */ get mainFunc(): FuncStatement; } import { Module } from "./Module.js"; import { FuncStatement } from "../statements/index.js"; //# sourceMappingURL=MainModule.d.ts.map