diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-04-18 18:08:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-18 18:08:02 -0400 |
commit | f9774b4ce985b9920cee8afec0f756e5e1bfc9fa (patch) | |
tree | 0c89f0eeeb09e40bbf96145266bb6bcfbae9ae99 /docs/interfaces | |
parent | 609d4fe3347f87290a428e2ba1192acb991b2e38 (diff) |
Improve dictionary sequence info (#1617)
* Ensure negative sequence is always -1
* Expose sequence on definition objects
* Update how sequence is exposed for definitions
* Update test data
* Update TS docs
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 230bada0..724a0b5a 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -297,6 +297,10 @@ namespace Translation { */ dictionary: string; /** + * Database sequence number for the term. The value will be `-1` if there is no sequence. + */ + sequence: number; + /** * Tags for the definition. */ tags: Tag[]; |