svantic
Version:
A set of Fomantic-UI components for Svelte framework
36 lines (35 loc) • 937 B
TypeScript
/** @typedef {typeof __propDef.props} PlaceholderProps */
/** @typedef {typeof __propDef.events} PlaceholderEvents */
/** @typedef {typeof __propDef.slots} PlaceholderSlots */
export default class Placeholder extends SvelteComponentTyped<{
class?: string;
inverted?: boolean;
style?: {};
}, {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type PlaceholderProps = typeof __propDef.props;
export type PlaceholderEvents = typeof __propDef.events;
export type PlaceholderSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string;
inverted?: boolean;
style?: {};
};
events: {
mount: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};