command-pattern-queue
```typescript // command interface export interface ICommand { execute(): void unexecute(): void }
Found 1 results for command-queue
```typescript // command interface export interface ICommand { execute(): void unexecute(): void }