UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

34 lines (33 loc) 833 B
/** @typedef {typeof __propDef.props} ReplyProps */ /** @typedef {typeof __propDef.events} ReplyEvents */ /** @typedef {typeof __propDef.slots} ReplySlots */ export default class Reply extends SvelteComponentTyped<{ class: any; style: any; }, { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }, { default: {}; }> { } export type ReplyProps = typeof __propDef.props; export type ReplyEvents = typeof __propDef.events; export type ReplySlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class: any; style: any; }; events: { mount: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export {};