Theia API Documentation v1.73.0
    Preparing search index...

    Result of parsing a frontmatter document. When the input has no frontmatter (or it is invalid), metadata is undefined and body is the original content.

    interface FrontmatterParseResult<T> {
        body: string;
        metadata: undefined | T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    body: string
    metadata: undefined | T