(plugin, params: CliData)
| 29 | }, |
| 30 | }, |
| 31 | async handler(plugin, params: CliData): Promise<string> { |
| 32 | const task = await resolveTaskForCli(plugin, { |
| 33 | path: params.path, |
| 34 | title: params.title, |
| 35 | query: params.query, |
| 36 | }); |
| 37 | const updatedTask = await startTimeTrackingForTask(plugin, task, params.description); |
| 38 | return formatCliJson(formatTimeTrackingResult(updatedTask)); |
| 39 | }, |
| 40 | }; |
nothing calls this directly
no test coverage detected