@digitalasset/daml-ledger
Version:
DAML Ledger API Node.js bindings
10 lines (9 loc) • 453 B
TypeScript
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;