UNPKG

carbon-components-svelte

Version:
20 lines (16 loc) 524 B
import type { SvelteComponentTyped } from "svelte"; import type { SvelteHTMLElements } from "svelte/elements"; type RestProps = SvelteHTMLElements["div"]; export interface FormItemProps extends RestProps { [key: `data-${string}`]: any; } export default class FormItem extends SvelteComponentTyped< FormItemProps, { click: WindowEventMap["click"]; mouseover: WindowEventMap["mouseover"]; mouseenter: WindowEventMap["mouseenter"]; mouseleave: WindowEventMap["mouseleave"]; }, { default: {} } > {}