| 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
39
40
 | | export interface TdSkeletonProps { |  |     animation?: { |  |         type: StringConstructor; |  |         value?: 'gradient' | 'flashed' | 'none'; |  |     }; |  |     style?: { |  |         type: StringConstructor; |  |         value?: string; |  |     }; |  |     delay?: { |  |         type: NumberConstructor; |  |         value?: number; |  |     }; |  |     externalClasses?: { |  |         type: ArrayConstructor; |  |         value?: ['t-class', 't-class-avatar', 't-class-image', 't-class-text']; |  |     }; |  |     loading?: { |  |         type: BooleanConstructor; |  |         value?: boolean; |  |     }; |  |     rowCol?: { |  |         type: ArrayConstructor; |  |         value?: SkeletonRowCol; |  |     }; |  |     theme?: { |  |         type: StringConstructor; |  |         value?: 'avatar' | 'image' | 'text' | 'paragraph'; |  |     }; |  | } |  | export declare type SkeletonRowCol = Array<Number | SkeletonRowColObj | Array<SkeletonRowColObj>>; |  | export interface SkeletonRowColObj { |  |     width?: string; |  |     size?: string; |  |     height?: string; |  |     marginRight?: string; |  |     marginLeft?: string; |  |     margin?: string; |  |     type?: 'rect' | 'circle' | 'text'; |  | } | 
 |