GamePortrait/node_modules/vant/lib/skeleton-avatar/SkeletonAvatar.d.ts

27 lines
1.1 KiB
TypeScript

import { ExtractPropTypes } from 'vue';
export type SkeletonAvatarShape = 'square' | 'round';
export declare const skeletonAvatarProps: {
avatarSize: (NumberConstructor | StringConstructor)[];
avatarShape: {
type: import("vue").PropType<SkeletonAvatarShape>;
default: SkeletonAvatarShape;
};
};
export type SkeletonAvatarProps = ExtractPropTypes<typeof skeletonAvatarProps>;
declare const _default: import("vue").DefineComponent<{
avatarSize: (NumberConstructor | StringConstructor)[];
avatarShape: {
type: import("vue").PropType<SkeletonAvatarShape>;
default: SkeletonAvatarShape;
};
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
avatarSize: (NumberConstructor | StringConstructor)[];
avatarShape: {
type: import("vue").PropType<SkeletonAvatarShape>;
default: SkeletonAvatarShape;
};
}>>, {
avatarShape: SkeletonAvatarShape;
}>;
export default _default;