@harmoniclabs/plu-ts-onchain
Version:
An embedded DSL for Cardano smart contracts creation coupled with a library for Cardano transactions, all in Typescript
20 lines (19 loc) • 403 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PType = void 0;
/**
* @abstract
*/
var PType = /** @class */ (function () {
function PType() {
/**
* probably never used;
*
* here only to make a difference from any generic object
*/
this._isPType = true;
}
return PType;
}());
exports.PType = PType;
;