@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
13 lines (12 loc) • 511 B
TypeScript
import { ExercisedEvent } from "./ExercisedEvent";
import { CreatedEvent } from "./CreatedEvent";
/**
* Each tree event message type below contains a ``witnessParties`` field which
* indicates the subset of the requested parties that can see the event
* in question.
*
* Note that transaction trees might contain events with
* _no_ witness parties, which were included simply because they were
* children of events which have witnesses.
*/
export declare type TreeEvent = CreatedEvent | ExercisedEvent;