command-pattern-queue

```typescript // command interface export interface ICommand { execute(): void unexecute(): void }