浏览代码

Fix NoticeIcon tab typings for skeletonProps (#3400)

The attribute `skeletonProps` in NoticeIcon tab has default value of `{}` so it doesn't necessary have to be required as stated in typings. This PR fixes it be optional.
Jakub Knejzlík 7 年之前
父节点
当前提交
acd67d21e7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/components/NoticeIcon/NoticeIconTab.d.ts

+ 1 - 1
src/components/NoticeIcon/NoticeIconTab.d.ts

@@ -20,7 +20,7 @@ export interface INoticeIconTabProps {
   name?: string;
   showClear?: boolean;
   skeletonCount?: number;
-  skeletonProps: SkeletonProps;
+  skeletonProps?: SkeletonProps;
   style?: React.CSSProperties;
   title?: string;
 }