Interface CollationSpec

Specification for collation options

interface CollationSpec {
    alternate?: string;
    backwards?: never;
    caseFirst?: "upper" | "lower" | "off";
    caseLevel?: boolean;
    locale: string;
    maxVariable?: never;
    numericOrdering?: boolean;
    strength?: 1 | 2 | 3;
}

Properties

alternate?: string
backwards?: never
caseFirst?: "upper" | "lower" | "off"
caseLevel?: boolean
locale: string
maxVariable?: never
numericOrdering?: boolean
strength?: 1 | 2 | 3