| 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
 | | export interface TimeData { |  |     DD: number; |  |     HH: number; |  |     mm: number; |  |     ss: number; |  |     SSS: number; |  | } |  | export declare const TimeDataUnit: { |  |     DD: string; |  |     HH: string; |  |     mm: string; |  |     ss: string; |  |     SSS: string; |  | }; |  | export declare const parseTimeData: (time: number) => TimeData; |  | export declare const isSameSecond: (time1: number, time2: number) => boolean; |  | export declare type TTimeList = { |  |     digit: string; |  |     unit: string; |  |     match: string; |  | }[]; |  | export declare const parseFormat: (time: number, format: string) => { |  |     timeText: string; |  |     timeList: TTimeList; |  | }; | 
 |