diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-04-03 15:41:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-03 15:41:44 -0400 |
commit | b8bedd5185869edb33a7657fff323f812444eed0 (patch) | |
tree | dd6b4b03062eeb28be3cde6c533e1a9d276f8215 /docs/interfaces | |
parent | 8de1e9b3d8828417bebdeb9bad6dc8ea7f391c12 (diff) |
Improve term dictionary entry sequence (#1591)
* Improve sequence for merged entries and add sequenceDictionary
* Update docs
* Expose sequence in definitions
* Expose sequence in root definition
* Update test data
Diffstat (limited to 'docs/interfaces')
-rw-r--r-- | docs/interfaces/dictionary-entry.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index facca6e5..230bada0 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -205,6 +205,10 @@ namespace Translation { */ 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[]; |