docs: type names changed from wrapper to primitive (#31752)
This commit is contained in:
parent
246884c4fb
commit
e6b1d95a1c
115 changed files with 1685 additions and 1685 deletions
|
@ -8,12 +8,12 @@ _This class is not exported from the `'electron'` module. It is only available a
|
|||
### `new TouchBarSlider(options)`
|
||||
|
||||
* `options` Object
|
||||
* `label` String (optional) - Label text.
|
||||
* `label` string (optional) - Label text.
|
||||
* `value` Integer (optional) - Selected value.
|
||||
* `minValue` Integer (optional) - Minimum value.
|
||||
* `maxValue` Integer (optional) - Maximum value.
|
||||
* `change` Function (optional) - Function to call when the slider is changed.
|
||||
* `newValue` Number - The value that the user selected on the Slider.
|
||||
* `newValue` number - The value that the user selected on the Slider.
|
||||
|
||||
### Instance Properties
|
||||
|
||||
|
@ -21,20 +21,20 @@ The following properties are available on instances of `TouchBarSlider`:
|
|||
|
||||
#### `touchBarSlider.label`
|
||||
|
||||
A `String` representing the slider's current text. Changing this value immediately updates the slider
|
||||
A `string` representing the slider's current text. Changing this value immediately updates the slider
|
||||
in the touch bar.
|
||||
|
||||
#### `touchBarSlider.value`
|
||||
|
||||
A `Number` representing the slider's current value. Changing this value immediately updates the slider
|
||||
A `number` representing the slider's current value. Changing this value immediately updates the slider
|
||||
in the touch bar.
|
||||
|
||||
#### `touchBarSlider.minValue`
|
||||
|
||||
A `Number` representing the slider's current minimum value. Changing this value immediately updates the
|
||||
A `number` representing the slider's current minimum value. Changing this value immediately updates the
|
||||
slider in the touch bar.
|
||||
|
||||
#### `touchBarSlider.maxValue`
|
||||
|
||||
A `Number` representing the slider's current maximum value. Changing this value immediately updates the
|
||||
A `number` representing the slider's current maximum value. Changing this value immediately updates the
|
||||
slider in the touch bar.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue