Type alias CreatePipelineAnalyzerOptions

CreatePipelineAnalyzerOptions: {
    features?: AnalyzerFeature[];
    properties: {
        pipeline: Omit<CreateAnalyzerOptions, "features">[];
    };
    type: "pipeline";
}

Options for creating a Pipeline Analyzer

Type declaration

  • Optional features?: AnalyzerFeature[]

    Features to enable for this Analyzer.

  • properties: {
        pipeline: Omit<CreateAnalyzerOptions, "features">[];
    }

    Additional properties for the Analyzer.

    • pipeline: Omit<CreateAnalyzerOptions, "features">[]

      Definitions for Analyzers to chain in this Pipeline Analyzer.

  • type: "pipeline"

    Type of the Analyzer.

Generated using TypeDoc