@aotearoan/neon
Version:
Neon is a lightweight design library of Vue 3 components with minimal dependencies.
28 lines (27 loc) • 954 B
TypeScript
import type { NeonToastModel } from '../NeonToastModel';
import type { NeonVerticalPosition } from '@/common/enums/NeonVerticalPosition';
/**
* This is an internal component for rendering alerts.
*/
declare const _default: import("vue").DefineComponent<{
modelValue: {
type: () => Array<NeonToastModel>;
required: true;
};
placement: {
type: () => NeonVerticalPosition;
required: true;
};
}, {
closeMessage: (id: number) => void;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: {
type: () => Array<NeonToastModel>;
required: true;
};
placement: {
type: () => NeonVerticalPosition;
required: true;
};
}>>, {}, {}>;
export default _default;