/** * @import { CekValue, UplcValue } from "../index.js" */ /** * @param {UplcValue} value * @returns {CekValue} */ export function asCekValue(value: UplcValue): CekValue; /** * @param {CekValue} value * @returns {undefined | UplcValue} */ export function asUplcValue(value: CekValue): undefined | UplcValue; /** * @param {CekValue[]} values * @returns {(undefined | UplcValue)[]} */ export function asUplcValues(values: CekValue[]): (undefined | UplcValue)[]; import type { UplcValue } from "../index.js"; import type { CekValue } from "../index.js"; //# sourceMappingURL=cast.d.ts.map