Skip to content

Commit

Permalink
Refactor #4274 - For Chip
Browse files Browse the repository at this point in the history
  • Loading branch information
tugcekucukoglu committed Aug 16, 2023
1 parent f6a69aa commit b27321f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/lib/chip/Chip.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[];
}

Expand Down

0 comments on commit b27321f

Please sign in to comment.