@eagleoutice/flowr - v2.15.8
    Preparing search index...

    One parsed .Rd manual page; it documents every name it lists as an alias, not just its file name.

    interface RdPage {
        aliases: readonly string[];
        arguments: ReadonlyMap<string, string>;
        docType?: string;
        keywords: readonly string[];
        name: string;
        title?: string;
        usage: readonly string[];
    }
    Index
    aliases: readonly string[]

    every \alias{}: the names this page documents, plot.foo and sin,float32-method included

    arguments: ReadonlyMap<string, string>

    \arguments{\item{a, b}{...}} unfolded to one entry per argument name, mapped to its description

    docType?: string

    the \docType{}, e.g. methods, class, data, package; absent for an ordinary function page

    keywords: readonly string[]

    the \keyword{} entries, e.g. internal, datasets, manip

    name: string

    the \name{} of the page, i.e. its topic; the file's basename when the page states none

    title?: string

    the \title{} as plain text

    usage: readonly string[]

    the \usage{} block, one entry per usage expression, with \method{print}{foo}(x) read as print.foo(x)