Refactor #4274 - For AutoComplete

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-16 09:24:31 +03:00
parent c263620978
commit dfb30bc1ac
2 changed files with 14 additions and 4 deletions

View file

@ -603,14 +603,24 @@ export interface AutoCompleteSlots {
*/
class: string;
/**
* Remove token icon function.
* Index of the token.
*/
onClick: void;
index: number;
/**
* Remove token icon function.
* @param {Event} event - Browser event
*/
onClick(event: Event, index: number): void;
}): VNode[];
/**
* Custom loading icon template.
*/
loadingicon(): VNode[];
loadingicon(scope: {
/**
* Style class of the loading icon.
*/
class: string;
}): VNode[];
}
/**