agnostic-svelte
Version:
AgnosticUI (svelte)
50 lines (49 loc) • 1.33 kB
TypeScript
/** @typedef {typeof __propDef.props} AlertProps */
/** @typedef {typeof __propDef.events} AlertEvents */
/** @typedef {typeof __propDef.slots} AlertSlots */
export default class Alert extends SvelteComponentTyped<{
isAnimationFadeIn?: boolean;
isAnimationSlideUp?: boolean;
isToast?: boolean;
isRounded?: boolean;
isBorderAll?: boolean;
isBorderLeft?: boolean;
isBorderRight?: boolean;
isBorderTop?: boolean;
isBorderBottom?: boolean;
isBlockEnd?: boolean;
type?: string;
}, {
[evt: string]: CustomEvent<any>;
}, {
icon: {};
default: {};
}> {
}
export type AlertProps = typeof __propDef.props;
export type AlertEvents = typeof __propDef.events;
export type AlertSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
isAnimationFadeIn?: boolean;
isAnimationSlideUp?: boolean;
isToast?: boolean;
isRounded?: boolean;
isBorderAll?: boolean;
isBorderLeft?: boolean;
isBorderRight?: boolean;
isBorderTop?: boolean;
isBorderBottom?: boolean;
isBlockEnd?: boolean;
type?: string;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
icon: {};
default: {};
};
};
export {};