UNPKG

@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) 309 B
import { Cloneable } from "../../utils/Cloneable.js"; import { PDataRepresentable } from "../PType/PDataRepresentable.js"; export declare class PInt extends PDataRepresentable implements Cloneable<PInt> { private _pint; get pint(): bigint; constructor(int?: number | bigint); clone(): PInt; }