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