@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
16 lines • 518 B
TypeScript
/**
* @typedef {import("./EntryPoint.js").EntryPoint} EntryPoint
*/
/**
* @implements {EntryPoint}
*/
export class TestingEntryPoint extends GenericEntryPoint implements EntryPoint {
/**
* @param {ModuleCollection} modules
*/
constructor(modules: ModuleCollection);
}
export type EntryPoint = import("./EntryPoint.js").EntryPoint;
import { GenericEntryPoint } from "./GenericEntryPoint.js";
import { ModuleCollection } from "./ModuleCollection.js";
//# sourceMappingURL=TestingEntryPoint.d.ts.map