@harmoniclabs/plu-ts-onchain
Version:
An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript
12 lines (11 loc) • 497 B
TypeScript
import { IRTerm } from "../../../../IR/IRTerm.js";
import { PLam, PInt } from "../../../PTypes/index.js";
import { Term } from "../../../Term/index.js";
import { PappArg } from "../../pappArg.js";
import { TermInt } from "../../std/index.js";
export type IntBinOPToInt = Term<PLam<PInt, PLam<PInt, PInt>>> & {
$: (input: PappArg<PInt>) => Term<PLam<PInt, PInt>> & {
$: (input: PappArg<PInt>) => TermInt;
};
};
export declare function intBinOpToInt(builtin: IRTerm): IntBinOPToInt;