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