UNPKG

command-pattern-queue

Version:

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

4 lines (3 loc) 62 B
export interface IInvoker { // your implementation.. }