UNPKG

@makigas/genshi-svelte

Version:

The Svelte Components required to integrate Genshi into a Svelte application

10 lines (9 loc) 375 B
import { type FormControlProps } from '../common.js'; import type { HTMLInputAttributes } from 'svelte/elements'; interface Props extends FormControlProps<HTMLInputAttributes> { group?: unknown; value: unknown; } declare const RadioButton: import("svelte").Component<Props, {}, "group">; type RadioButton = ReturnType<typeof RadioButton>; export default RadioButton;