command-pattern-queue
Version:
```typescript // command interface export interface ICommand { execute(): void unexecute(): void }
6 lines (5 loc) • 66 B
text/typescript
```typescript // command interface export interface ICommand { execute(): void unexecute(): void }