fix(MultiSelect): use correct type for highlightedId

This commit is contained in:
dominikg 2022-03-12 22:34:03 +01:00
commit f88896bf25
4 changed files with 4 additions and 4 deletions

View file

@ -222,7 +222,7 @@ export interface MultiSelectProps
* Id of the highlighted ListBoxMenuItem
* @default null
*/
highlightedId?: null | string;
highlightedId?: null | MultiSelectItemId;
}
export default class MultiSelect extends SvelteComponentTyped<