@rogerpence/rp-utils
    Preparing search index...

    Type Alias MarkdownObject<T>

    Represents a validated markdown file with strongly-typed frontmatter.

    type MarkdownObject<T extends Record<string, any>> = {
        content: string;
        frontMatter: T;
    }

    Type Parameters

    • T extends Record<string, any>

      The validated type of the frontmatter object

    Index

    Properties

    Properties

    content: string
    frontMatter: T