diff options
Diffstat (limited to 'docs/interfaces')
| -rw-r--r-- | docs/interfaces/dictionary-entry.ts | 14 | 
1 files changed, 4 insertions, 10 deletions
| diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index 724a0b5a..2a58f5dc 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -201,14 +201,6 @@ namespace Translation {           */          isPrimary: boolean;          /** -         * Database sequence number for the term, or `-1` if multiple entries have been merged. -         */ -        sequence: number; -        /** -         * The dictionary that the sequence number originated from, or `null` if there is no sequence. -         */ -        sequenceDictionary: string; -        /**           * A list of inflections that was applied to get the term.           */          inflections: string[]; @@ -297,9 +289,11 @@ namespace Translation {           */          dictionary: string;          /** -         * Database sequence number for the term. The value will be `-1` if there is no sequence. +         * A list of database sequence numbers for the term. A value of `-1` corresponds to no sequence. +         * The list can have multiple values if multiple definitions with different sequences have been merged. +         * The list should always have at least one item.           */ -        sequence: number; +        sequences: number;          /**           * Tags for the definition.           */ |