ilojo-bar-components
Version:
Ilojo Bar Component Library
17 lines (16 loc) • 487 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
btnText: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type ButtonProps = typeof __propDef.props;
export declare type ButtonEvents = typeof __propDef.events;
export declare type ButtonSlots = typeof __propDef.slots;
export default class Button extends SvelteComponentTyped<ButtonProps, ButtonEvents, ButtonSlots> {
}
export {};