| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
 | | import { SuperComponent } from '../common/src/index'; |  | export default class CountDown extends SuperComponent { |  |     externalClasses: string[]; |  |     properties: import("./type").TdCountDownProps; |  |     observers: { |  |         time(): void; |  |     }; |  |     data: { |  |         prefix: string; |  |         classPrefix: string; |  |         timeDataUnit: { |  |             DD: string; |  |             HH: string; |  |             mm: string; |  |             ss: string; |  |             SSS: string; |  |         }; |  |         timeData: import("./utils").TimeData; |  |         formattedTime: string; |  |     }; |  |     timeoutId: null | number; |  |     lifetimes: { |  |         detached(): void; |  |     }; |  |     methods: { |  |         start(): void; |  |         pause(): void; |  |         reset(): void; |  |         getTime(): number; |  |         updateTime(remain: number): void; |  |         doCount(): void; |  |     }; |  | } | 
 |