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) • 306 B
TypeScript
import type { BooleanSetting } from '../../types';
interface Props {
item: BooleanSetting;
value: boolean;
onchange: (v: boolean) => void;
}
declare const BooleanInput: import("svelte").Component<Props, {}, "">;
type BooleanInput = ReturnType<typeof BooleanInput>;
export default BooleanInput;