(path: string)
| 21 | } |
| 22 | |
| 23 | function taskInfo(path: string): TaskInfo { |
| 24 | return { |
| 25 | title: path, |
| 26 | status: "open", |
| 27 | priority: "normal", |
| 28 | path, |
| 29 | archived: false, |
| 30 | }; |
| 31 | } |
| 32 | |
| 33 | function createApp(files: Record<string, TFile> = {}): any { |
| 34 | return { |
no outgoing calls
no test coverage detected