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