progress.d.ts 510 B

12345678910111213141516171819
  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. computedStatus: string;
  13. computedProgress: number;
  14. };
  15. observers: {
  16. percentage(percentage: any): void;
  17. color(color: any): void;
  18. };
  19. }