@eagleoutice/flowr - v2.13.14
    Preparing search index...
    Enrichments: {
        "call-targets": {
            enrichElement: (
                e: FlowrSearchElement<ParentInformation>,
                _s: FlowrSearchElements<ParentInformation, (...)[]>,
                analyzer: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: { onlyBuiltin?: ...; qualifyNames?: ... } | undefined,
                prev: CallTargetsContent | undefined,
            ) => Promise<CallTargetsContent>;
            mapper: (
                __namedParameters: CallTargetsContent,
            ) => FlowrSearchElement<(...)>[];
        };
        "cfg-information": {
            enrichElement: (
                e: FlowrSearchElement<ParentInformation>,
                search: FlowrSearchElements<ParentInformation, (...)[]>,
                _data: ReadonlyFlowrAnalysisProvider<KnownParser>,
                _args: CfgInformationArguments | undefined,
                prev: CfgInformationElementContent | undefined,
            ) => { isReachable: (...) | (...) | (...); isRoot: boolean };
            enrichSearch: (
                _search: FlowrSearchElements<ParentInformation, (...)[]>,
                data: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: CfgInformationArguments | undefined,
                prev: CfgInformationSearchContent | undefined,
            ) => Promise<CfgInformationSearchContent>;
        };
        "last-call": {
            enrichElement: (
                e: FlowrSearchElement<ParentInformation>,
                _s: FlowrSearchElements<ParentInformation, (...)[]>,
                analyzer: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: (...)[] | undefined,
                prev: LastCallContent | undefined,
            ) => Promise<LastCallContent>;
            mapper: (
                __namedParameters: LastCallContent,
            ) => FlowrSearchElement<(...)>[];
        };
        "query-data": {
            enrichElement: (
                _e: FlowrSearchElement<ParentInformation>,
                _search: FlowrSearchElements<ParentInformation, (...)[]>,
                _data: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: QueryDataElementContent | undefined,
                prev: QueryDataElementContent | undefined,
            ) => QueryDataElementContent;
            enrichSearch: (
                _search: FlowrSearchElements<ParentInformation, (...)[]>,
                _data: ReadonlyFlowrAnalysisProvider<KnownParser>,
                args: QueryDataSearchContent | undefined,
                prev: QueryDataSearchContent | undefined,
            ) => Required<QueryDataSearchContent>;
        };
        roxygen: {
            enrichElement: (
                e: FlowrSearchElement<ParentInformation>,
                _search: FlowrSearchElements<ParentInformation, (...)[]>,
                analyzer: ReadonlyFlowrAnalysisProvider<KnownParser>,
                _args: undefined,
                prev: RoxygenElementContent | undefined,
            ) => Promise<{ documentation: ...; tags: ...; [key: ...]: ... }>;
        };
    } = ...

    The registry of enrichments that are currently supported by the search. See FlowrSearchBuilder.with for more information on how to apply enrichments.

    Type Declaration