@talend/react-containers
Version:
Provide connected components aka containers for @talend/react-cmf based on @talend/react-components.
34 lines (33 loc) • 697 B
TypeScript
declare namespace _default {
export { open };
export { validate };
export { cancel };
}
export default _default;
/**
* Action called at the dialog opening|mounting.
* @param {object} event
* @param {object} data
*/
declare function open(event: object, data: object): {
type: string;
cmf: {
routerReplace: string;
};
model: any;
redirectUrl: string;
};
/**
* Action to delete a resource and close the confirm dialog.
*/
declare function validate(event: any, data: any): {
type: string;
data: any;
};
/**
* Action to cancel and close the confirm dialog.
*/
declare function cancel(event: any, data: any): {
type: string;
data: any;
};