UNPKG

@digitalasset/daml-ledger

Version:
14 lines (13 loc) 390 B
import { Checkpoint } from "./Checkpoint"; import { Completion } from "./Completion"; export interface CompletionStreamResponse { /** * This checkpoint may be used to restart consumption. The * checkpoint is after any completions in this response. */ checkpoint?: Checkpoint; /** * If set, one or more completions. */ completions?: Completion[]; }