(path: string, context?: TaskNotesMutationContext)
| 2061 | } |
| 2062 | |
| 2063 | async deleteTask(path: string, context?: TaskNotesMutationContext): Promise<void> { |
| 2064 | const task = await this.requireTask(path); |
| 2065 | await this.withMutationContext([task.path], context, () => |
| 2066 | this.plugin.taskService.deleteTask(task) |
| 2067 | ); |
| 2068 | } |
| 2069 | |
| 2070 | async uncompleteTask( |
| 2071 | path: string, |
no test coverage detected