v4web-components
Version:
Stencil Component Starter
28 lines (27 loc) • 554 B
TypeScript
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;
}