@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
13 lines • 399 B
TypeScript
/**
* @param {ParseContext} ctx
* @returns {Word}
*/
export function parseName(ctx: ParseContext): Word;
/**
* @type {TokenMatcher<Word>}
*/
export const anyName: TokenMatcher<Word>;
import { ParseContext } from "./ParseContext.js";
import type { Word } from "@helios-lang/compiler-utils";
import type { TokenMatcher } from "@helios-lang/compiler-utils";
//# sourceMappingURL=parseName.d.ts.map