element-book - v25.2.0
    Preparing search index...

    Type Alias InternalBookTreeNodeType<Entry>

    The base tree node type for BookTreeNode.

    type InternalBookTreeNodeType<Entry> = {
        _isBookTreeNode: true;
        children: Record<string, BookTreeNode>;
        entry: Entry;
        fullUrlBreadcrumbs: ReadonlyArray<string>;
        manuallyAdded: boolean;
        urlBreadcrumb: string;
    }

    Type Parameters

    • Entry
    Index

    Properties

    _isBookTreeNode: true
    children: Record<string, BookTreeNode>

    entry

    entry: Entry
    fullUrlBreadcrumbs: ReadonlyArray<string>
    manuallyAdded: boolean

    False when an entry has been added by traversing manually added parents. True when the entry was added as an explicit entry.

    urlBreadcrumb: string

    UrlBreadcrumb is different from entry.title because it's modified to support URLs.