UNPKG
zhu-jiang-yi-yuan-bigscreen
Version:
latest (1.0.20201209)
1.0.20201209
南方医科大学珠江医院大屏端
www.nsn.com
zhu-jiang-yi-yuan-bigscreen
/
lib
/
@types
/
OnValueProps.d.ts
11 lines
(9 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
HTMLAttributes
}
from
'react'
;
export
type
OnValueProps
= {
title
?:
string
;
value
:
number
|
undefined
;
/** 是否同比 */
isYearOnYear
?:
boolean
;
notPercent
?:
boolean
; } &
Pick
<
HTMLAttributes
<
any
>,
'className'
|
'style'
>