Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface Command

The Command interface should be used to implement your command use case types.

example
export interface CountCommand extends Command {
name: 'CountCommand';
payload: { count: number };
}

Hierarchy

Index

Properties

Properties

name: any
payload: any
type: "command"

Generated using TypeDoc