@talend/react-containers
Version:
Provide connected components aka containers for @talend/react-cmf based on @talend/react-components.
25 lines (24 loc) • 759 B
TypeScript
/**
* Action to push a generic notification
* @param {Object} notification Notification to push
* @returns {Object}
*/
export function pushGeneric(notification: Object): Object;
/**
* Action to specifically push an info notification
* @param {Object} notification Notification to push
* @returns {Object}
*/
export function pushInfo(notification: Object): Object;
/**
* Action to specifically push a warning notification
* @param {Object} notification Notification to push
* @returns {Object}
*/
export function pushWarning(notification: Object): Object;
/**
* Action to specifically push an error notification
* @param {Object} notification Notification to push
* @returns {Object}
*/
export function pushError(notification: Object): Object;