Type alias CreateStopwordsAnalyzerOptions

CreateStopwordsAnalyzerOptions: CreateAnalyzerOptionsType<"stopwords", {
    hex?: boolean;
    stopwords: string[];
}>

Options for creating a Stopwords Analyzer

Type declaration

  • Optional hex?: boolean

    Whether stopword values should be interpreted as hex-encoded strings.

    Default: false

  • stopwords: string[]

    Array of strings that describe the tokens to be discarded.