You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
716 B

import { SuperComponent } from '../common/src/index';
export default class Progress extends SuperComponent {
externalClasses: string[];
options: {
multipleSlots: boolean;
};
properties: import("./type").TdProgressProps;
data: {
prefix: string;
classPrefix: string;
colorBar: string;
heightBar: string;
computedStatus: string;
computedProgress: number;
};
observers: {
percentage(percentage: any): void;
color(color: any): void;
strokeWidth(strokeWidth: any): string;
theme(theme: any): void;
trackColor(trackColor: any): void;
};
methods: {
getInnerDiameter(): void;
};
}