Package version:

Interface CustomEntityAlias

A complex object that can be used to specify alternative spellings or synonyms to the root entity name.

interface CustomEntityAlias {
    accentSensitive?: boolean;
    caseSensitive?: boolean;
    fuzzyEditDistance?: number;
    text: string;
}

Properties

accentSensitive?: boolean

Determine if the alias is accent sensitive.

caseSensitive?: boolean

Determine if the alias is case sensitive.

fuzzyEditDistance?: number

Determine the fuzzy edit distance of the alias.

text: string

The text of the alias.