Interface CorpusEntry<T>

One entry as content sees it: where it is, where it links, and its frontmatter.

interface CorpusEntry<T = Metadata> {
    href: string;
    meta: T;
    path: string;
}

Type Parameters

Properties

Properties

href: string

The href that navigates to it, per the viewer's mapping.

meta: T
path: string

Corpus-absolute path (/roadmap/R3-174.mdx).