SkeletonAvatar.d.ts 1.1 KB

123456789101112131415161718192021222324252627
  1. import { ExtractPropTypes } from 'vue';
  2. import type { SkeletonAvatarShape } from './types';
  3. export declare const skeletonAvatarProps: {
  4. avatarSize: (NumberConstructor | StringConstructor)[];
  5. avatarShape: {
  6. type: import("vue").PropType<SkeletonAvatarShape>;
  7. default: SkeletonAvatarShape;
  8. };
  9. };
  10. export type SkeletonAvatarProps = ExtractPropTypes<typeof skeletonAvatarProps>;
  11. declare const _default: import("vue").DefineComponent<{
  12. avatarSize: (NumberConstructor | StringConstructor)[];
  13. avatarShape: {
  14. type: import("vue").PropType<SkeletonAvatarShape>;
  15. default: SkeletonAvatarShape;
  16. };
  17. }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
  18. avatarSize: (NumberConstructor | StringConstructor)[];
  19. avatarShape: {
  20. type: import("vue").PropType<SkeletonAvatarShape>;
  21. default: SkeletonAvatarShape;
  22. };
  23. }>>, {
  24. avatarShape: SkeletonAvatarShape;
  25. }>;
  26. export default _default;