| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- export interface TdLoadingProps {
- delay?: {
- type: NumberConstructor;
- value?: number;
- };
- duration?: {
- type: NumberConstructor;
- value?: number;
- };
- fullscreen?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- indicator?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- inheritColor?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- layout?: {
- type: StringConstructor;
- value?: 'horizontal' | 'vertical';
- };
- loading?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- pause?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- progress?: {
- type: NumberConstructor;
- value?: number;
- };
- reverse?: {
- type: BooleanConstructor;
- value?: boolean;
- };
- size?: {
- type: StringConstructor;
- value?: string;
- };
- text?: {
- type: StringConstructor;
- value?: string;
- };
- theme?: {
- type: StringConstructor;
- value?: 'circular' | 'spinner' | 'dots';
- };
- }
|