@boxyhq/svelte-ui
Version:
Svelte UI components from BoxyHQ
22 lines (21 loc) • 605 B
TypeScript
import { SvelteComponentTyped } from "svelte";
interface PropsType {
text: string;
successCallback?: (info: any) => void;
}
declare const __propDef: {
props: {
text: PropsType["text"];
successCallback?: PropsType["successCallback"];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type IndexProps = typeof __propDef.props;
export type IndexEvents = typeof __propDef.events;
export type IndexSlots = typeof __propDef.slots;
export default class Index extends SvelteComponentTyped<IndexProps, IndexEvents, IndexSlots> {
}
export {};