UNPKG

@provablehq/sdk

Version:

A Software Development Kit (SDK) for Zero-Knowledge Transactions

6 lines (5 loc) 279 B
import { Plaintext } from "../../wasm.js"; import { PlaintextArray } from "./array.js"; import { PlaintextLiteral } from "./literal.js"; import { PlaintextStruct } from "./struct.js"; export type PlaintextObject = PlaintextArray | PlaintextLiteral | PlaintextStruct | Plaintext;