UNPKG

@makigas/genshi-svelte

Version:

The Svelte Components required to integrate Genshi into a Svelte application

9 lines (8 loc) 347 B
import { type FormControlProps } from '../common.js'; import type { HTMLInputAttributes } from 'svelte/elements'; interface Props extends FormControlProps<HTMLInputAttributes> { checked?: boolean; } declare const Checkbox: import("svelte").Component<Props, {}, "checked">; type Checkbox = ReturnType<typeof Checkbox>; export default Checkbox;