diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2021-10-14 21:26:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 21:26:53 -0400 |
commit | 75aabd983da29023b8423bd44d565202aad6b664 (patch) | |
tree | 754fbe5457747cd72fcf13767fc3176fc0d8f280 /docs/interfaces | |
parent | 11f7591a7f5fcbfc3a3e631eaac0addb228c988a (diff) |
String frequency support (#1989)
* Restore support for string frequency values
* Add support for {value, displayValue} frequencies
* Update test data
* Improve number parsing of string frequencies
* Improve reading detection
* Expose a displayValue property for frequency information
* Update docs
* Expose displayValue to Anki note data
* Fix translator
* Update display generation
* Update test data
* Update counts
Diffstat (limited to 'docs/interfaces')
-rw-r--r-- | docs/interfaces/dictionary-entry.ts | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/docs/interfaces/dictionary-entry.ts b/docs/interfaces/dictionary-entry.ts index 253912d0..2609a42a 100644 --- a/docs/interfaces/dictionary-entry.ts +++ b/docs/interfaces/dictionary-entry.ts @@ -181,7 +181,15 @@ namespace Translation { /** * The frequency for the character, as a number of occurrences or an overall rank. */ - frequency: number | string; + frequency: number; + /** + * A display value to show to the user. + */ + displayValue: string | null; + /** + * Whether or not the displayValue string was parsed to determine the frequency value. + */ + displayValueParsed: boolean; } // Terms @@ -400,7 +408,15 @@ namespace Translation { /** * The frequency for the term, as a number of occurrences or an overall rank. */ - frequency: number | string; + frequency: number; + /** + * A display value to show to the user. + */ + displayValue: string | null; + /** + * Whether or not the displayValue string was parsed to determine the frequency value. + */ + displayValueParsed: boolean; } /** |