svantic
Version:
A set of Fomantic-UI components for Svelte framework
30 lines (29 loc) • 752 B
TypeScript
/** @typedef {typeof __propDef.props} BlurProps */
/** @typedef {typeof __propDef.events} BlurEvents */
/** @typedef {typeof __propDef.slots} BlurSlots */
export default class Blur extends SvelteComponentTyped<{
class?: string;
style?: {};
}, {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type BlurProps = typeof __propDef.props;
export type BlurEvents = typeof __propDef.events;
export type BlurSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string;
style?: {};
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};