mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 08:25:32 +00:00
chore(web): address code review comments
This commit is contained in:
parent
bc8a4b6f43
commit
b5be1d45f0
1 changed files with 5 additions and 5 deletions
|
|
@ -40,24 +40,24 @@ export interface KeyboardDetails {
|
|||
/**
|
||||
* The user-friendly name of the country in which the language is spoken. (Optional)
|
||||
*/
|
||||
CountryName: string | null,
|
||||
CountryName?: string,
|
||||
/**
|
||||
* A three-letter code corresponding to the country. (Optional)
|
||||
*/
|
||||
CountryCode: string| null,
|
||||
CountryCode?: string,
|
||||
/**
|
||||
* Deprecated. A unique identifier for the keyboard. (Use 'InternalName' instead.)
|
||||
*/
|
||||
KeyboardID: string | null,
|
||||
KeyboardID?: string,
|
||||
/**
|
||||
* The font packaged with the keyboard to support its use. (Optional)
|
||||
*/
|
||||
Font: InternalKeyboardFont | null,
|
||||
Font?: InternalKeyboardFont,
|
||||
/**
|
||||
* The font packaged with the keyboard to properly display specialized
|
||||
* OSK characters. (Optional)
|
||||
*/
|
||||
OskFont: InternalKeyboardFont | null,
|
||||
OskFont?: InternalKeyboardFont,
|
||||
/**
|
||||
* Indicates whether the keyboard is designed for right-to-left scripts,
|
||||
* null if the keyboard hasn't been loaded yet (and thus the value is unknown).
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue