/** * @param {{body: UplcTerm, argName?: string, site?: Site}} props * @returns {UplcLambda} */ export function makeUplcLambda(props: { body: UplcTerm; argName?: string; site?: Site; }): UplcLambda; /** * @param {FlatReader} r * @returns {UplcLambda} */ export function decodeUplcLambdaFromFlat(r: FlatReader): UplcLambda; /** * @import { Site } from "@helios-lang/compiler-utils" * @import { * CekContext, * CekStack, * CekStateChange, * FlatReader, * FlatWriter, * UplcLambda, * UplcTerm * } from "../index.js" */ export const UPLC_LAMBDA_TAG: 2; import type { UplcTerm } from "../index.js"; import type { Site } from "@helios-lang/compiler-utils"; import type { UplcLambda } from "../index.js"; import type { FlatReader } from "../index.js"; //# sourceMappingURL=UplcLambda.d.ts.map