chore(select): update dispatched change event type

This commit is contained in:
Eric Liu 2022-06-18 12:24:13 -07:00
commit d3cef5f377
4 changed files with 9 additions and 9 deletions

View file

@ -109,7 +109,7 @@ export interface SelectProps
export default class Select extends SvelteComponentTyped<
SelectProps,
{
change: CustomEvent<string>;
change: CustomEvent<string | number>;
input: WindowEventMap["input"];
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];