svantic
Version:
A set of Fomantic-UI components for Svelte framework
42 lines (41 loc) • 1.04 kB
TypeScript
/** @typedef {typeof __propDef.props} RevealProps */
/** @typedef {typeof __propDef.events} RevealEvents */
/** @typedef {typeof __propDef.slots} RevealSlots */
export default class Reveal extends SvelteComponentTyped<{
class?: string;
style?: {};
type?: string;
direction?: string;
state?: string;
instant?: boolean;
}, {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type RevealProps = typeof __propDef.props;
export type RevealEvents = typeof __propDef.events;
export type RevealSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string;
style?: {};
type?: string;
direction?: string;
state?: string;
instant?: boolean;
};
events: {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};