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) 395 B
import { PBool, PList, TermFn } from "../../../PTypes/index.js"; import { ToPType } from "../../../type_system/index.js"; import { TermType } from "../../../type_system/types.js"; /** * @since v0.5.0 * @param {TermType} t type of the elements of the list */ export declare function peqList<ElemsT extends TermType>(t: ElemsT): TermFn<[PList<ToPType<ElemsT>>, PList<ToPType<ElemsT>>], PBool>;