UNPKG

react-application-core

Version:

A react-based application core for the business applications.

25 lines (24 loc) 684 B
/// <reference types="react" /> import { IUniversalContainerProps } from '../../definition'; import { GenericContainer } from '../base/generic.container'; export declare class NotificationContainer extends GenericContainer { /** * @stable [13.02.2020] * @param {IUniversalContainerProps} props */ constructor(props: IUniversalContainerProps); /** * @stable [13.02.2020] * @returns {JSX.Element} */ render(): JSX.Element; /** * @stable [13.02.2020] * @returns {JSX.Element} */ private get snackbarElement(); /** * @stable [12.06.2020] */ private clearCurrentNotification; }