(event: Event)
| 98 | } |
| 99 | |
| 100 | private onTitleInput(event: Event): void { |
| 101 | const target = event.target as HTMLInputElement |
| 102 | this.nextTodoTitle = target.value |
| 103 | } |
| 104 | |
| 105 | private addTodo(): void { |
| 106 | const title = this.nextTodoTitle.trim() |
nothing calls this directly
no outgoing calls
no test coverage detected