@helios-lang/compiler
Version:
Helios is a Domain Specific Language that compiles to Plutus-Core (i.e. Cardano on-chain validator scripts). Helios is a non-Haskell alternative to Plutus. With this library you can compile Helios scripts and build Cardano transactions, all you need to bu
20 lines • 473 B
TypeScript
/**
* @typedef {import("./common.js").DataType} DataType
*/
/**
* Builtin Duration type
* @type {DataType}
*/
export const DurationType: DataType;
/**
* Builtin Time type. Opaque alias of Int representing milliseconds since 1970
* @type {DataType}
*/
export const TimeType: DataType;
/**
* Builtin TimeRange type
* @type {DataType}
*/
export const TimeRangeType: DataType;
export type DataType = import("./common.js").DataType;
//# sourceMappingURL=time.d.ts.map