progress.d.ts 716 B

1234567891011121314151617181920212223242526
  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. };
  16. observers: {
  17. percentage(percentage: any): void;
  18. color(color: any): void;
  19. strokeWidth(strokeWidth: any): string;
  20. theme(theme: any): void;
  21. trackColor(trackColor: any): void;
  22. };
  23. methods: {
  24. getInnerDiameter(): void;
  25. };
  26. }