type.d.ts 558 B

123456789101112131415161718192021222324
  1. import { ShapeEnum } from '../common/common';
  2. export interface TdAvatarGroupProps {
  3. cascading?: {
  4. type: StringConstructor;
  5. value?: CascadingValue;
  6. };
  7. collapseAvatar?: {
  8. type: StringConstructor;
  9. value?: string;
  10. };
  11. max?: {
  12. type: NumberConstructor;
  13. value?: number;
  14. };
  15. shape?: {
  16. type: StringConstructor;
  17. value?: ShapeEnum;
  18. };
  19. size?: {
  20. type: StringConstructor;
  21. value?: string;
  22. };
  23. }
  24. export declare type CascadingValue = 'left-up' | 'right-up';