| 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
34
35
36
37
38
 | | export interface TdImageViewerProps { |  |     backgroundColor?: { |  |         type: StringConstructor; |  |         value?: string; |  |     }; |  |     closeBtn?: { |  |         type: null; |  |         value?: string | boolean | object; |  |     }; |  |     deleteBtn?: { |  |         type: null; |  |         value?: string | boolean | object; |  |     }; |  |     images?: { |  |         type: ArrayConstructor; |  |         value?: Array<string>; |  |     }; |  |     initialIndex?: { |  |         type: NumberConstructor; |  |         value?: Number; |  |     }; |  |     showIndex?: { |  |         type: BooleanConstructor; |  |         value?: boolean; |  |     }; |  |     usingCustomNavbar?: { |  |         type: BooleanConstructor; |  |         value?: boolean; |  |     }; |  |     visible?: { |  |         type: BooleanConstructor; |  |         value?: boolean; |  |     }; |  |     defaultVisible?: { |  |         type: BooleanConstructor; |  |         value?: boolean; |  |     }; |  | } | 
 |