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
| export interface TdChatThinkingProps {
| animation?: {
| type: StringConstructor;
| value?: 'skeleton' | 'moving' | 'gradient' | 'dot';
| };
| collapsed?: {
| type: BooleanConstructor;
| value?: boolean;
| };
| content: {
| type: ObjectConstructor;
| value?: {
| text?: string;
| title?: string;
| };
| required?: boolean;
| };
| layout?: {
| type: StringConstructor;
| value?: 'block' | 'border';
| };
| maxHeight?: {
| type: NumberConstructor;
| value?: number;
| };
| status: {
| type: StringConstructor;
| value?: 'complete' | 'stop' | 'error' | 'pending';
| required?: boolean;
| };
| }
|
|