Type alias CreateAnalyzerOptionsType<Type, Properties>

CreateAnalyzerOptionsType<Type, Properties>: Properties extends void
    ? {
        features?: AnalyzerFeature[];
        properties?: Record<string, never>;
        type: Type;
    }
    : {
        features?: AnalyzerFeature[];
        properties: Properties;
        type: Type;
    }

Shared attributes of all Analyzer creation options.

Type Parameters