UNPKG
zhu-jiang-yi-yuan-mobile
Version:
latest (1.0.20201209)
1.0.20201209
南方医科大学珠江医院移动端
www.nsn.com
zhu-jiang-yi-yuan-mobile
/
lib
/
@types
/
TableProps.d.ts
8 lines
(7 loc)
•
246 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
TableProps
as
AntTableProps
}
from
'antd/es/table'
;
import
{
HTMLAttributes
}
from
'react'
;
export
type
TableProps
<T> = {
title
:
string
; } &
Pick
<
AntTableProps
<T>,
'columns'
|
'dataSource'
> &
Pick
<
HTMLAttributes
<
any
>,
'className'
>