diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-06-05 22:27:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-05 22:27:58 -0400 |
commit | d87515ec125189ceeae251d37013b511c7bf8baf (patch) | |
tree | 2c52130b8ced8efbd371cc2e9f5e5f0678242d76 /docs/interfaces | |
parent | 057283245e2a2ce55f89cacb42067b8c93dd28cd (diff) |
Translator id updates (#1730)
* Allow unsequenced definitions to be added to multiple groups
* Update translator data to store multiple IDs
* Update Anki note data
* Update test data
* Update docs
Diffstat (limited to 'docs/interfaces')
-rw-r--r-- | docs/interfaces/dictionary-entry.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index 2a58f5dc..da2a0151 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -192,9 +192,9 @@ namespace Translation { */ export interface TermDictionaryEntry extends DictionaryEntry { /** - * Database ID for the term, or `-1` if multiple entries have been merged. + * Database IDs for the term. */ - id: number; + 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. |