Refactor #4274 - For MultiSelect

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-16 09:40:20 +03:00
parent 07dae2e611
commit 2c47b9447a
2 changed files with 9 additions and 3 deletions

View file

@ -659,9 +659,15 @@ export interface MultiSelectSlots {
*/
class: string;
/**
* Remove token icon function.
* Item of the token.
*/
onClick: void;
item: any;
/**
* Remove token icon function.
* @param {Event} event - Browser event
* @param {any} item - Item
*/
onClick(event: Event, item: any): void;
}): VNode[];
/**
* Custom header checkbox icon template.