UNPKG

react-application-core

Version:

A react-based application core for the business applications.

19 lines (18 loc) 646 B
import { IErrorWrapper, IMessageWrapper, ISubmitTextWrapper, ITimeoutWrapper, IAfterShowWrapper } from '../../definitions.interface'; import { IEnhancedGenericComponentProps } from '../../definition'; /** * @stable [22.08.2018] */ export interface ISnackbarConfiguration extends IEnhancedGenericComponentProps, IMessageWrapper, ISubmitTextWrapper, ITimeoutWrapper, IAfterShowWrapper { actionHandler?: () => void; } /** * @stable [22.08.2018] */ export interface ISnackbarEntity extends IErrorWrapper { } /** * @stable [22.08.2018] */ export interface ISnackbarProps extends ISnackbarConfiguration, ISnackbarEntity { }