From d4132ac5585f2d74114a0bf94dea53a3ba1421fe Mon Sep 17 00:00:00 2001 From: Benjy Cui Date: Thu, 5 Jan 2017 12:08:43 +0800 Subject: [PATCH] chore: add missing definition for Modal --- components/modal/Modal.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/components/modal/Modal.tsx b/components/modal/Modal.tsx index 450dd1a24..68b898349 100644 --- a/components/modal/Modal.tsx +++ b/components/modal/Modal.tsx @@ -20,6 +20,7 @@ export interface ModalProps { onOk?: () => void; /** 点击模态框右上角叉、取消按钮、Props.maskClosable 值为 true 时的遮罩层或键盘按下 Esc 时的回调*/ onCancel?: (e: React.MouseEvent) => void; + afterClose?: () => void; /** 宽度*/ width?: string | number; /** 底部内容*/