提交
This commit is contained in:
18
甲情_甲意/miniprogram/node_modules/antd-mini/es/Loading/props.d.ts
generated
vendored
Normal file
18
甲情_甲意/miniprogram/node_modules/antd-mini/es/Loading/props.d.ts
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
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>;
|
Reference in New Issue
Block a user