progress.d.ts 762 B

12345678910111213141516171819202122232425262728
  1. import { SuperComponent } from '../common/src/index';
  2. export default class Progress extends SuperComponent {
  3. externalClasses: string[];
  4. options: {
  5. multipleSlots: boolean;
  6. };
  7. properties: import("./type").TdProgressProps;
  8. data: {
  9. prefix: string;
  10. classPrefix: string;
  11. colorBar: string;
  12. heightBar: string;
  13. computedStatus: string;
  14. computedProgress: number;
  15. isIOS: boolean;
  16. };
  17. attached(): void;
  18. observers: {
  19. percentage(percentage: any): void;
  20. color(color: any): void;
  21. strokeWidth(strokeWidth: any): string;
  22. theme(theme: any): void;
  23. trackColor(trackColor: any): void;
  24. };
  25. methods: {
  26. getInnerDiameter(): void;
  27. };
  28. }