parent updates for .d.ts files and apidoc

This commit is contained in:
tugcekucukoglu 2023-12-05 10:06:55 +03:00
parent da84f55507
commit 8eea973282
30 changed files with 1171 additions and 393 deletions

View file

@ -40,6 +40,20 @@ export interface TreeSelectPassThroughMethodOptions {
global: object | undefined;
}
/**
* Custom shared passthrough(pt) option method.
*/
export interface TreeSelectSharedPassThroughMethodOptions {
/**
* Defines valid properties.
*/
props: TreeSelectProps;
/**
* Defines current inline state.
*/
state: TreeSelectState;
}
/**
* Custom passthrough(pt) options.
* @see {@link TreeSelectProps.pt}
@ -85,7 +99,7 @@ export interface TreeSelectPassThroughOptions {
* Used to pass attributes to Tree component.
* @see {@link TreePassThroughOptionType}
*/
tree?: TreePassThroughOptionType;
tree?: TreePassThroughOptionType<TreeSelectSharedPassThroughMethodOptions>;
/**
* Used to pass attributes to the empty message's DOM element.
*/