Lib: Update lazydropdown props name to differentiate from non-lazy dropdown

This commit is contained in:
2024-12-23 01:19:03 +01:00
parent 471163de2f
commit b6a645da6c

View File

@ -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. */ /** The label displayed in the list of options. */
label: string; label: string;