@aplus-frontend/antdv
Version:
Vue basic component library maintained based on ant-design-vue
32 lines (31 loc) • 1.26 kB
TypeScript
import type { ExtractPropTypes, PropType } from 'vue';
export declare const avatarProps: () => {
shape: PropType<"circle" | "square">;
prefixCls: StringConstructor;
size: PropType<number | "default" | "small" | "large">;
active: {
type: BooleanConstructor;
default: any;
};
};
export type SkeletonAvatarProps = Partial<ExtractPropTypes<ReturnType<typeof avatarProps>>>;
declare const SkeletonAvatar: import("vue").DefineComponent<ExtractPropTypes<{
shape: PropType<"circle" | "square">;
prefixCls: StringConstructor;
size: PropType<number | "default" | "small" | "large">;
active: {
type: BooleanConstructor;
default: any;
};
}>, () => import("../_util/type").VueNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ExtractPropTypes<{
shape: PropType<"circle" | "square">;
prefixCls: StringConstructor;
size: PropType<number | "default" | "small" | "large">;
active: {
type: BooleanConstructor;
default: any;
};
}>> & Readonly<{}>, {
active: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default SkeletonAvatar;