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