Refactor #4274 - For Chips

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-16 09:32:23 +03:00
parent b27321fdaa
commit c4b7221efb
2 changed files with 12 additions and 3 deletions

View file

@ -209,9 +209,18 @@ export interface ChipsSlots {
*/
removetokenicon(scope: {
/**
* Remove icon click event
* Style class of the icon.
*/
onClick(): void;
class: string;
/**
* Index of the token.
*/
index: number;
/**
* Remove token icon function.
* @param {Event} event - Browser event
*/
onClick(event: Event, index: number): void;
}): VNode[];
}
/**