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) 386 B
import type { MultiSelectSetting } from '../../types'; interface Props { item: MultiSelectSetting; value: string[]; fullscreen?: boolean; onchange: (v: string[]) => void; } declare const MultiSelectReorderInput: import("svelte").Component<Props, {}, "">; type MultiSelectReorderInput = ReturnType<typeof MultiSelectReorderInput>; export default MultiSelectReorderInput;