Type alias StopwordsAnalyzerDescription

StopwordsAnalyzerDescription: GenericAnalyzerDescription & {
    properties: {
        hex: boolean;
        stopwords: string[];
    };
    type: "stopwords";
}

An object describing a Stopwords Analyzer

Type declaration

  • properties: {
        hex: boolean;
        stopwords: string[];
    }
    • hex: boolean
    • stopwords: string[]
  • type: "stopwords"