ng-devui
Version:
DevUI components based on Angular
20 lines (19 loc) • 425 B
TypeScript
export interface IProgressItem {
color: string;
content?: string;
percentage: number;
percentageText?: string;
strokePath?: {
[key: string]: string;
};
[key: string]: any;
}
export interface IGradientColor {
color: string;
percentage: string;
}
export interface ShowContentConfig {
showInnerContent?: boolean;
showOuterContent?: boolean;
showCenterContent?: boolean;
}