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