mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
46 lines
989 B
TypeScript
46 lines
989 B
TypeScript
|
// Project: https://github.com/vueComponent/ant-design-vue
|
|||
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|||
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|||
|
|
|||
|
import { AntdComponent } from './component';
|
|||
|
|
|||
|
export declare class Avatar extends AntdComponent {
|
|||
|
/**
|
|||
|
* the Icon type for an icon avatar, see Icon Component
|
|||
|
* @type string
|
|||
|
*/
|
|||
|
icon: string;
|
|||
|
|
|||
|
/**
|
|||
|
* the shape of avatar
|
|||
|
* @default 'circle'
|
|||
|
* @type string
|
|||
|
*/
|
|||
|
shape: "circle" | "square";
|
|||
|
|
|||
|
/**
|
|||
|
* the size of the avatar
|
|||
|
* @default 'default'
|
|||
|
* @type number | string
|
|||
|
*/
|
|||
|
size: "small" | "large" | "default" | number;
|
|||
|
|
|||
|
/**
|
|||
|
* the address of the image for an image avatar
|
|||
|
* @type string
|
|||
|
*/
|
|||
|
src: string;
|
|||
|
|
|||
|
/**
|
|||
|
* This attribute defines the alternative text describing the image
|
|||
|
* @type string
|
|||
|
*/
|
|||
|
alt: string;
|
|||
|
|
|||
|
/**
|
|||
|
* handler when img load error,return false to prevent default fallback behavior
|
|||
|
* @type
|
|||
|
*/
|
|||
|
loadError: () => boolean;
|
|||
|
}
|