Type alias NormAnalyzerDescription

NormAnalyzerDescription: GenericAnalyzerDescription & {
    properties: {
        accent: boolean;
        case: "lower" | "none" | "upper";
        locale: string;
    };
    type: "norm";
}

An object describing a Norm Analyzer.

Type declaration

  • properties: {
        accent: boolean;
        case: "lower" | "none" | "upper";
        locale: string;
    }
    • accent: boolean
    • case: "lower" | "none" | "upper"
    • locale: string
  • type: "norm"