UNPKG

@holochain/client

Version:

A JavaScript client for the Holochain Conductor API

22 lines (21 loc) 346 B
import { SignedActionHashed } from "./action.js"; import { Entry } from "./entry.js"; /** * @public */ export type Record = { signed_action: SignedActionHashed; entry: RecordEntry; }; /** * @public */ export type RecordEntry = { Present: Entry; } | { Hidden: void; } | { NotApplicable: void; } | { NotStored: void; };