feat: forward keyup event to components with inputs

This commit is contained in:
Eric Y Liu 2021-06-26 13:40:57 -07:00
commit f672cad940
17 changed files with 38 additions and 0 deletions

View file

@ -123,6 +123,7 @@ export default class Search extends SvelteComponentTyped<
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];
keydown: WindowEventMap["keydown"];
keyup: WindowEventMap["keyup"];
clear: CustomEvent<any>;
},
{}