diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/interfaces/dictionary-entry.ts | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index da2a0151..d170f6df 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -192,10 +192,6 @@ namespace Translation { */ export interface TermDictionaryEntry extends DictionaryEntry { /** - * Database IDs for the term. - */ - ids: number[]; - /** * Whether or not any of the sources is a primary source. Primary sources are derived from the * original search text, while non-primary sources originate from related terms. */ @@ -289,6 +285,22 @@ namespace Translation { */ dictionary: string; /** + * The index of the dictionary in the original list of dictionaries used for the lookup. + */ + dictionaryIndex: number; + /** + * The priority of the dictionary. + */ + dictionaryPriority: number; + /** + * Database ID for the definition. + */ + id: number[]; + /** + * A score for the definition. + */ + score: number; + /** * 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. |