UNPKG

v4web-components

Version:
28 lines (27 loc) 554 B
import { EventEmitter } from '../../../stencil-public-runtime'; export declare class LabDsToast { message: string; label: string; action: () => void; actionLabel: string; state: 'success' | 'error' | 'warning'; size: 'small' | 'medium'; openToast: boolean; isOpen: boolean; closeToast: EventEmitter<boolean>; states: { success: { icon: string; }; error: { icon: string; }; warning: { icon: string; }; }; timeOut: any; watchPropHandler(): void; handleClose(): void; render(): any; }