docs: type names changed from wrapper to primitive (#31752)

This commit is contained in:
Milan Burda 2021-11-16 05:13:18 +01:00 committed by GitHub
parent 246884c4fb
commit e6b1d95a1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
115 changed files with 1685 additions and 1685 deletions

View file

@ -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.