Refactor #4274 - For Chip

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-16 09:32:15 +03:00
parent f6a69aa496
commit b27321fdaa

View file

@ -130,12 +130,14 @@ export interface ChipSlots {
removeicon(scope: {
/**
* Remove icon click event
* @param {Event} event - Browser event
*/
onClick(): void;
onClick(event: Event): void;
/**
* Remove icon keydown event
* @param {Event} event - Browser event
*/
onKeydown(): void;
onKeydown(event: Event): void;
}): VNode[];
}