@bexis2/bexis2-core-ui
Version:
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
23 lines (22 loc) • 574 B
TypeScript
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
title?: string;
message?: string;
cssClass?: string;
deleteBtn?: boolean;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
actions: {};
};
};
export type AlertProps = typeof __propDef.props;
export type AlertEvents = typeof __propDef.events;
export type AlertSlots = typeof __propDef.slots;
export default class Alert extends SvelteComponent<AlertProps, AlertEvents, AlertSlots> {
}
export {};