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 c28756adae
commit 4f5e653c47

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. */
label: string;