fix(types): fix types for on:paste event

This commit is contained in:
metonym 2024-10-25 15:29:48 -07:00 committed by Eric Liu
commit 3167e449fd
11 changed files with 11 additions and 11 deletions

View file

@ -169,7 +169,7 @@ export default class ComboBox extends SvelteComponentTyped<
keyup: WindowEventMap["keyup"];
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];
paste: DocumentAndElementEventHandlersEventMap["paste"];
paste: WindowEventMap["paste"];
scroll: WindowEventMap["scroll"];
},
{ default: { item: ComboBoxItem; index: number }; titleText: {} }