svelte-settings
Version:
> [!WARNING] > This project is a work in progress. Do not use it in any of your projects yet.
12 lines (11 loc) • 416 B
TypeScript
import type { Readable } from 'svelte/store';
interface Props {
disabled: Readable<boolean | undefined>;
allOptions: readonly string[];
labels?: Record<string, string>;
selectedOptions: string[];
onchange: (v: string[]) => void;
}
declare const ReorderableList: import("svelte").Component<Props, {}, "">;
type ReorderableList = ReturnType<typeof ReorderableList>;
export default ReorderableList;