UNPKG

svelte-settings

Version:

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

11 lines (10 loc) 360 B
import type { ListSettingPage } from '../../types'; interface Props { item: ListSettingPage; value: Record<string, unknown>[]; onchange: (v: unknown[]) => void; onnavigate: (target: string[]) => void; } declare const ListInput: import("svelte").Component<Props, {}, "">; type ListInput = ReturnType<typeof ListInput>; export default ListInput;