UNPKG

svelte-settings

Version:

> [!WARNING] > This project is a work in progress. Do not use it in any of your projects yet.

10 lines (9 loc) 298 B
import type { SelectSetting } from '../../types'; interface Props { item: SelectSetting; value: string; onchange: (v: string) => void; } declare const SelectInput: import("svelte").Component<Props, {}, "">; type SelectInput = ReturnType<typeof SelectInput>; export default SelectInput;