UNPKG

@jill64/svelte-input

Version:

➡️ Functional Input Component Set for Svelte

8 lines (7 loc) 218 B
import type { ListInput } from './ListInput'; type ListInputValue = { disabled?: boolean; list: ListInput; }; export type GroupedInput = Record<string, ListInputValue> | Map<string, ListInputValue>; export {};