Files
tolaria/src/utils/initializeNoteProperties.ts
2026-04-19 18:18:35 +02:00

14 lines
327 B
TypeScript

export type UpdateFrontmatter = (
path: string,
key: string,
value: string,
options?: { silent?: boolean },
) => Promise<void>
export async function initializeNoteProperties(
updateFrontmatter: UpdateFrontmatter,
path: string,
): Promise<void> {
await updateFrontmatter(path, 'type', 'Note', { silent: true })
}