Revert "Fixed typo"

This reverts commit 70980de77a.
This commit is contained in:
Cagatay Civici 2024-05-15 12:24:26 +03:00
parent 70980de77a
commit 428dbe0469
107 changed files with 753 additions and 753 deletions

View file

@ -45,23 +45,23 @@ export interface SliderPassThroughMethodOptions {
*/
export interface SliderPassThroughOptions {
/**
* Used to pass attributes to the roots DOM element.
* Used to pass attributes to the root's DOM element.
*/
root?: SliderPassThroughOptionType;
/**
* Used to pass attributes to the ranges DOM element.
* Used to pass attributes to the range's DOM element.
*/
range?: SliderPassThroughOptionType;
/**
* Used to pass attributes to the handles DOM element.
* Used to pass attributes to the handle's DOM element.
*/
handle?: SliderPassThroughOptionType;
/**
* Used to pass attributes to the start handlers DOM element.
* Used to pass attributes to the start handler's DOM element.
*/
startHandler?: SliderPassThroughOptionType;
/**
* Used to pass attributes to the end handlers DOM element.
* Used to pass attributes to the end handler's DOM element.
*/
endHandler?: SliderPassThroughOptionType;
/**