type.d.ts 576 B

1234567891011121314151617181920212223242526
  1. export interface TdBackTopProps {
  2. fixed?: {
  3. type: BooleanConstructor;
  4. value?: boolean;
  5. };
  6. icon?: {
  7. type: null;
  8. value?: string | boolean | object;
  9. };
  10. scrollTop?: {
  11. type: NumberConstructor;
  12. value?: number;
  13. };
  14. text?: {
  15. type: StringConstructor;
  16. value?: string;
  17. };
  18. theme?: {
  19. type: StringConstructor;
  20. value?: 'round' | 'half-round' | 'round-dark' | 'half-round-dark';
  21. };
  22. visibilityHeight?: {
  23. type: NumberConstructor;
  24. value?: number;
  25. };
  26. }