**PassThroughMethodOptions updated TS comments

This commit is contained in:
Tuğçe Küçükoğlu 2023-09-05 09:50:04 +03:00
parent 3293ef980c
commit 041bd3214c
86 changed files with 852 additions and 0 deletions

View file

@ -17,9 +17,21 @@ export declare type ToggleButtonPassThroughOptionType = ToggleButtonPassThroughA
* Custom passthrough(pt) option method.
*/
export interface ToggleButtonPassThroughMethodOptions {
/**
* Defines instance.
*/
instance: any;
/**
* Defines valid properties.
*/
props: ToggleButtonProps;
/**
* Defines current inline state.
*/
state: ToggleButtonState;
/**
* Defines current options.
*/
context: ToggleButtonContext;
}