getGenerator<Name extends "from" | "get" | "all" | "criterion">( name: Name,): { all: ( data: PipelineOutput< Pipeline<IPipelineStep<PipelineStepName, (...args: any[]) => any>>, > & { dataflow: DataflowInformation; normalize: NormalizedAst }, ) => FlowrSearchElements<ParentInformation>; criterion: ( data: PipelineOutput< Pipeline<IPipelineStep<PipelineStepName, (...args: any[]) => any>>, > & { dataflow: DataflowInformation; normalize: NormalizedAst }, args: { criterion: SlicingCriteria }, ) => FlowrSearchElements<ParentInformation>; from: ( data: PipelineOutput< Pipeline<IPipelineStep<PipelineStepName, (...args: any[]) => any>>, > & { dataflow: DataflowInformation; normalize: NormalizedAst }, args: { from: | FlowrSearchElement<ParentInformation> | FlowrSearchElement<ParentInformation>[]; }, ) => FlowrSearchElements<ParentInformation>; get: ( data: PipelineOutput< Pipeline<IPipelineStep<PipelineStepName, (...args: any[]) => any>>, > & { dataflow: DataflowInformation; normalize: NormalizedAst }, __namedParameters: { filter: FlowrSearchGetFilter }, ) => FlowrSearchElements<ParentInformation>;}[Name] Type Parameters
- Name extends "from" | "get" | "all" | "criterion"