UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

44 lines (43 loc) 1.05 kB
/** @typedef {typeof __propDef.props} FormProps */ /** @typedef {typeof __propDef.events} FormEvents */ /** @typedef {typeof __propDef.slots} FormSlots */ export default class Form extends SvelteComponentTyped<{ class: any; style: any; size: any; state: any; inverted?: boolean; equal?: boolean; fluid?: boolean; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type FormProps = typeof __propDef.props; export type FormEvents = typeof __propDef.events; export type FormSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class: any; style: any; size: any; state: any; inverted?: boolean; equal?: boolean; fluid?: boolean; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};