You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
700 B
24 lines
700 B
1 year ago
|
/// <reference types="miniprogram-api-typings" />
|
||
|
import { SuperComponent, RelationsOptions } from '../common/src/index';
|
||
|
export default class Avatar extends SuperComponent {
|
||
|
options: WechatMiniprogram.Component.ComponentOptions;
|
||
|
externalClasses: string[];
|
||
|
properties: import("./type").TdAvatarProps;
|
||
|
data: {
|
||
|
prefix: string;
|
||
|
classPrefix: string;
|
||
|
isShow: boolean;
|
||
|
zIndex: number;
|
||
|
bordered: boolean;
|
||
|
};
|
||
|
relations: RelationsOptions;
|
||
|
observers: {
|
||
|
icon(icon: any): void;
|
||
|
};
|
||
|
methods: {
|
||
|
hide(): void;
|
||
|
updateCascading(zIndex: any): void;
|
||
|
onLoadError(e: WechatMiniprogram.CustomEvent): void;
|
||
|
};
|
||
|
}
|