export interface InitCounter extends Command { name: "InitCounter"; payload: { counterId: string; initialCount: number; }; }
The user that perform the command.
The command's id.
The metadata of your command.
The command's name.
The payload of your command.
Generated using TypeDoc