(app: App, path: string, content: string)
| 9 | } |
| 10 | |
| 11 | export async function createVaultFile(app: App, path: string, content: string): Promise<TFile> { |
| 12 | return app.vault.create(path, content); |
| 13 | } |
| 14 | |
| 15 | export async function createVaultFolder(app: App, path: string): Promise<void> { |
| 16 | await app.vault.createFolder(path); |
no test coverage detected