Type alias TextAnalyzerDescription

TextAnalyzerDescription: AnalyzerDescriptionType<"text", {
    accent: boolean;
    case: CaseConversion;
    edgeNgram: {
        max: number;
        min: number;
        preserveOriginal: boolean;
    };
    locale: string;
    stemming: boolean;
    stopwords: string[];
    stopwordsPath: string;
}>

An object describing a Text Analyzer.

Type declaration

  • accent: boolean
  • case: CaseConversion
  • edgeNgram: {
        max: number;
        min: number;
        preserveOriginal: boolean;
    }
    • max: number
    • min: number
    • preserveOriginal: boolean
  • locale: string
  • stemming: boolean
  • stopwords: string[]
  • stopwordsPath: string