jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/less/Loading/props.d.ts

19 lines
600 B
TypeScript
Raw Normal View History

2024-11-15 03:51:28 +00:00
import { IBaseProps } from '../_util/base';
/**
* @description
*/
export interface ILoadingProps extends IBaseProps {
/**
* @description type 'spin' '#fff'
* @default '#fff'
*/
color?: string;
/**
* @description type 'spin'
* @default medium
*/
size?: 'small' | 'medium' | 'large' | 'x-large';
type?: 'spin' | 'mini';
}
export declare const LoadingDefaultProps: Partial<ILoadingProps>;