@harmoniclabs/plu-ts-onchain
Version:
An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript
15 lines (14 loc) • 319 B
TypeScript
import { UPLCTerm } from "@harmoniclabs/uplc";
/**
* @abstract
*/
export declare class PType {
/**
* probably never used;
*
* here only to make a difference from any generic object
*/
protected readonly _isPType: true;
protected readonly _PTypeUPLCTerm?: UPLCTerm;
constructor();
}