NoticeIconTab.d.ts 574 字节
Newer Older
J
jim 已提交
1 2
import * as React from 'react';
export interface INoticeIconData {
R
Rayron Victor 已提交
3
  avatar?: string | React.ReactNode;
J
jim 已提交
4 5 6 7 8 9 10 11 12
  title?: React.ReactNode;
  description?: React.ReactNode;
  datetime?: React.ReactNode;
  extra?: React.ReactNode;
  style?: React.CSSProperties;
}

export interface INoticeIconTabProps {
  list?: INoticeIconData[];
13
  count?: number;
J
jim 已提交
14
  title?: string;
15
  name?: string;
J
jim 已提交
16 17 18
  emptyText?: React.ReactNode;
  emptyImage?: string;
  style?: React.CSSProperties;
J
jim 已提交
19
  showClear?: boolean;
J
jim 已提交
20 21
}

J
jim 已提交
22
export default class NoticeIconTab extends React.Component<INoticeIconTabProps, any> {}