UNPKG

@node-ts/bus-workflow

Version:

A workflow engine for orchestrating logic flows in distributed applications.

14 lines (11 loc) 267 B
import { Command } from '@node-ts/bus-messages' export class TestCommand extends Command { static NAME = '@node-ts/bus-core/test-command' $name = TestCommand.NAME $version = 0 constructor ( readonly property1: string | undefined ) { super() } }