(operations: NewOperationInput[])
| 200 | } |
| 201 | |
| 202 | addOperations(operations: NewOperationInput[]): PendingOperation[] { |
| 203 | return operations.map(op => this.addOperation(op)) |
| 204 | } |
| 205 | |
| 206 | getOperation(id: string): PendingOperation | undefined { |
| 207 | return this.state.operations.find(op => op.id === id) |
no test coverage detected