(completed: boolean)
| 45 | } |
| 46 | |
| 47 | setAllTo(completed: boolean) { |
| 48 | this.todos.forEach((t: Todo) => t.completed = completed); |
| 49 | this.updateStore(); |
| 50 | } |
| 51 | |
| 52 | removeCompleted() { |
| 53 | this.todos = this.getRemaining(); |
nothing calls this directly
no test coverage detected