(app: App, path: string)
| 13 | } |
| 14 | |
| 15 | export async function createVaultFolder(app: App, path: string): Promise<void> { |
| 16 | await app.vault.createFolder(path); |
| 17 | } |
| 18 | |
| 19 | export async function modifyVaultFile(app: App, file: TFile, content: string): Promise<void> { |
| 20 | await app.vault.modify(file, content); |
no test coverage detected