svantic
Version:
A set of Fomantic-UI components for Svelte framework
24 lines (23 loc) • 674 B
TypeScript
/** @typedef {typeof __propDef.props} PusherProps */
/** @typedef {typeof __propDef.events} PusherEvents */
/** @typedef {typeof __propDef.slots} PusherSlots */
export default class Pusher extends SvelteComponentTyped<{}, {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type PusherProps = typeof __propDef.props;
export type PusherEvents = typeof __propDef.events;
export type PusherSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};