progress.d.ts 584 B

123456789101112131415161718192021
  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. };
  21. }