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
| export interface TdSkeletonProps {
| animation?: {
| type: StringConstructor;
| value?: 'gradient' | 'flashed' | 'none';
| };
| delay?: {
| type: NumberConstructor;
| value?: number;
| };
| 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;
| height?: string;
| size?: string;
| marginRight?: string;
| marginLeft?: string;
| margin?: string;
| type?: 'rect' | 'circle' | 'text';
| }
|
|