diff --git a/src/lib/components/form/LazyDropdown.ts b/src/lib/components/form/LazyDropdown.ts index 7ebf1fc..534402e 100644 --- a/src/lib/components/form/LazyDropdown.ts +++ b/src/lib/components/form/LazyDropdown.ts @@ -1,4 +1,6 @@ -export interface LazyDropdownOption { +import { type DropdownOption } from "$lib/components"; + +export interface LazyDropdownOption extends DropdownOption { /** The label displayed in the list of options. */ label: string;