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

This commit is contained in:
2024-12-23 16:15:27 +01:00
parent 471163de2f
commit b6a645da6c
+3 -1
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;