Type Alias: FrontmatterDocument
type FrontmatterDocument = Readonly<{
body: string;
content: string;
data: Readonly<UnknownRecord>;
error: string | undefined;
offset: number;
}>;
Defined in: _internal/frontmatter.ts:11
Parsed YAML frontmatter and the Markdown body that follows it.