(taskListId: string)
| 109 | } |
| 110 | |
| 111 | function getHighWaterMarkPath(taskListId: string): string { |
| 112 | return join(getTasksDir(taskListId), HIGH_WATER_MARK_FILE) |
| 113 | } |
| 114 | |
| 115 | async function readHighWaterMark(taskListId: string): Promise<number> { |
| 116 | const path = getHighWaterMarkPath(taskListId) |
no test coverage detected