svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
24 lines (23 loc) • 653 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
value?: number;
small?: boolean;
circle?: boolean;
dot?: boolean;
placement?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
value: {};
};
};
export type BadgeProps = typeof __propDef.props;
export type BadgeEvents = typeof __propDef.events;
export type BadgeSlots = typeof __propDef.slots;
export default class Badge extends SvelteComponentTyped<BadgeProps, BadgeEvents, BadgeSlots> {
}
export {};