command-pattern-queue
Version:
```typescript // command interface export interface ICommand { execute(): void unexecute(): void }
3 lines • 116 B
JavaScript
```typescript // command interface export interface ICommand { execute(): void unexecute(): void }