From 4aa06ca28b772d63e944da37b3cefb3f1737a440 Mon Sep 17 00:00:00 2001 From: Dave Date: Wed, 18 Nov 2020 13:48:30 +0800 Subject: [PATCH] feat(type): export ImageProps interface (#27846) --- components/image/index.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/image/index.tsx b/components/image/index.tsx index 3a5973a51e..0e603bd897 100644 --- a/components/image/index.tsx +++ b/components/image/index.tsx @@ -9,4 +9,6 @@ const Image: React.FC = ({ prefixCls: customizePrefixCls, ...otherPr return ; }; +export { ImageProps }; + export default Image;