fix(radio): strongly type dispatched change/select events

This commit is contained in:
metonym 2023-10-03 11:07:10 -07:00
commit c8667c17e1
8 changed files with 42 additions and 18 deletions

View file

@ -39,6 +39,6 @@ export interface TileGroupProps extends RestProps {
export default class TileGroup extends SvelteComponentTyped<
TileGroupProps,
{ select: CustomEvent<any> },
{ select: CustomEvent<string> },
{ default: {} }
> {}