diff options
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;      }      /** |