UNPKG

@boxyhq/svelte-ui

Version:

Svelte UI components from BoxyHQ

28 lines (27 loc) 784 B
import { SvelteComponentTyped } from "svelte"; export interface CheckboxProps { label: string; name: string; id?: string; checked: boolean; handleChange: (e: any) => void; } declare const __propDef: { props: { id?: CheckboxProps["id"]; label: CheckboxProps["label"]; name: CheckboxProps["name"]; checked: CheckboxProps["checked"]; handleChange: CheckboxProps["handleChange"]; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type IndexProps = typeof __propDef.props; export type IndexEvents = typeof __propDef.events; export type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> { } export {};