/** * * @param {{value: UplcValue, site?: Site}} props * @returns {UplcConst} */ export function makeUplcConst(props: { value: UplcValue; site?: Site; }): UplcConst; /** * @param {FlatReader} r * @returns {UplcConst} */ export function decodeUplcConstFromFlat(r: FlatReader): UplcConst; /** * @import { Site } from "@helios-lang/compiler-utils" * @import { * CekContext, * CekStack, * CekStateChange, * FlatReader, * FlatWriter, * UplcConst, * UplcTerm, * UplcValue * } from "../index.js" */ export const UPLC_CONST_TAG: 4; import type { UplcValue } from "../index.js"; import type { Site } from "@helios-lang/compiler-utils"; import type { UplcConst } from "../index.js"; import type { FlatReader } from "../index.js"; //# sourceMappingURL=UplcConst.d.ts.map