UNPKG
ant-design-pro
Version:
beta (2.0.0-beta.4)
latest (2.3.2)
2.3.2
2.3.1
2.3.0
2.2.1
2.2.0
2.1.1
2.1.0
2.0.0
2.0.0-beta.4
2.0.0-beta.3
2.0.0-beta.2
2.0.0-beta.1
1.4.4
1.4.3
1.4.1
1.4.0
1.3.0
1.2.1
1.2.0
1.1.0
1.0.1
1.0.1-rc.0
1.0.0
0.3.1
0.3.0
0.2.3-rc.3
0.2.3-rc.2
0.2.3-rc.1
0.2.3-rc.0
0.2.2
0.2.2-rc.1
0.2.2-rc.0
0.2.1
0.2.1-rc.2
0.2.1-rc.1
0.2.0
0.2.0-rc.1
0.1.10
0.1.9
0.1.8
0.1.7
0.1.5
0.1.4
0.1.3
0.0.16
0.0.6
0.0.1
An enterprise-class UI design language and React-based implementation
ant-design/ant-design-pro
ant-design-pro
/
lib
/
CountDown
/
index.d.ts
10 lines
(8 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
React
from
'react'
;
export
interface
ICountDownProps
{
format
?:
(
time
:
number
) =>
void
;
target
:
Date
|
number
;
onEnd
?:
() =>
void
;
style
?:
React
.
CSSProperties
; }
export
default
class
CountDown
extends
React.Component
<
ICountDownProps
,
any
> {}