UNPKG

@digitalasset/daml-ledger

Version:
10 lines (9 loc) 453 B
import { CreateCommand } from './CreateCommand'; import { ExerciseCommand } from "./ExerciseCommand"; import { CreateAndExerciseCommand } from "./CreateAndExerciseCommand"; /** * A command can either create a new contract or exercise a choice on an existing contract. * * Uses the `commandType` string type tag to differentiate between types in the union. */ export declare type Command = CreateCommand | ExerciseCommand | CreateAndExerciseCommand;