| 43 | * substitution, so parsing logic has a single home (`@shared/template-files`). |
| 44 | */ |
| 45 | export interface CustomTemplateFile { |
| 46 | /** Vault-relative path, e.g. `.zennotes/templates/adr.md`. */ |
| 47 | sourcePath: string |
| 48 | /** Raw `.md` contents including YAML frontmatter. */ |
| 49 | raw: string |
| 50 | } |
| 51 | |
| 52 | /** Payload for creating or updating a custom template file. */ |
| 53 | export interface WriteTemplateInput { |
nothing calls this directly
no outgoing calls
no test coverage detected