| 4 | } |
| 5 | |
| 6 | interface Vault { |
| 7 | getConfig: (key: string) => string; |
| 8 | exists: (path: string) => Promise<boolean>; |
| 9 | } |
| 10 | interface FileManager { |
| 11 | createNewMarkdownFile: ( |
| 12 | folder: TFolder | undefined, |
nothing calls this directly
no outgoing calls
no test coverage detected