@harmoniclabs/plu-ts-onchain
Version:
An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript
9 lines (8 loc) • 320 B
TypeScript
import { PType } from "../../PType/index.js";
import { Cloneable } from "../../../utils/Cloneable.js";
export declare class PLam<A extends PType, B extends PType> extends PType implements Cloneable<PLam<A, B>> {
private _input;
private _output;
constructor(input?: A, output?: B);
clone(): PLam<A, B>;
}