ngx-pluto
Version:
19 lines (18 loc) • 436 B
TypeScript
import { OnInit } from '@angular/core';
/**
* @ignore
*/
export declare class NpProgressBar implements OnInit {
colors: Array<string>;
height: number;
gradient: boolean;
type: 'progress' | 'percent';
leftText: string;
rightText: string;
percentage: number;
readonly fillState: any;
background: string;
constructor();
ngOnInit(): void;
buildBackgroundColors(): void;
}