(path: string)
| 1832 | } |
| 1833 | |
| 1834 | async getTask(path: string): Promise<TaskInfo | null> { |
| 1835 | const task = await this.plugin.cacheManager.getTaskInfo(this.normalizeTaskPath(path)); |
| 1836 | return task ? copyTaskInfo(task) : null; |
| 1837 | } |
| 1838 | |
| 1839 | async listTasks(query?: TaskNotesRuntimeTaskQuery): Promise<TaskInfo[]> { |
| 1840 | if (!query) { |
no test coverage detected