UNPKG

@harmoniclabs/plu-ts-onchain

Version:

An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript

6 lines (5 loc) 188 B
import { IRTerm } from "../../IRTerm.js"; export type IRTermWithDepth = IRTerm & { depth: number; }; export declare function defineDepth(term: IRTerm, depth: number): IRTermWithDepth;