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 38f7949985
commit 600c035366

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;