Enrichments: {
    "call-targets": {
        enrich: (
            e: FlowrSearchElement<ParentInformation>,
            data: PipelineOutput<
                Pipeline<IPipelineStep<PipelineStepName, (...args: any[]) => any>>,
            > & { dataflow: DataflowInformation; normalize: NormalizedAst },
        ) => CallTargetsContent;
        mapper: (
            __namedParameters: CallTargetsContent,
        ) => FlowrSearchElement<ParentInformation>[];
    };
    "last-call": {
        enrich: (
            e: FlowrSearchElement<ParentInformation>,
            data: PipelineOutput<
                Pipeline<IPipelineStep<PipelineStepName, (...args: any[]) => any>>,
            > & { dataflow: DataflowInformation; normalize: NormalizedAst },
            args: undefined | Omit<LinkToLastCall<string | RegExp>, "type">[],
        ) => LastCallContent;
        mapper: (
            __namedParameters: LastCallContent,
        ) => FlowrSearchElement<ParentInformation>[];
    };
} = ...

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

Type declaration