[[Obsidian]]のキャッシュデータ型。 ```ts export interface CachedMetadata { /** * @public */ links?: LinkCache[]; /** * @public */ embeds?: EmbedCache[]; /** * @public */ tags?: TagCache[]; /** * @public */ headings?: HeadingCache[]; /** * Sections are root level markdown blocks, which can be used to divide the document up. * @public */ sections?: SectionCache[]; /** * @public */ listItems?: ListItemCache[]; /** * @public */ frontmatter?: FrontMatterCache; /** * @public */ blocks?: Record<string, BlockCache>; } ``` ## MOC - 📚**ドキュメント** - 📒**関連** - [[LinkCache (Obsidian)|LinkCache]] - 📖**ノウハウ** - 💁**トラブルシューティング** - 🗃**用語定義**