Refactor #4274 - For Chip

pull/3943/head^2
Tuğçe Küçükoğlu 2023-08-16 09:32:15 +03:00
parent f6a69aa496
commit b27321fdaa
1 changed files with 4 additions and 2 deletions

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[];
}