(path: string)
| 5 | import type { TaskInfo } from "../../../src/types"; |
| 6 | |
| 7 | function task(path: string): TaskInfo { |
| 8 | return { |
| 9 | title: path, |
| 10 | status: "open", |
| 11 | priority: "normal", |
| 12 | path, |
| 13 | archived: false, |
| 14 | }; |
| 15 | } |
| 16 | |
| 17 | function pluginWithTasks(tasks: TaskInfo[]): any { |
| 18 | return { |
no outgoing calls
no test coverage detected