ngx-progressbar
Version:
<p align="center"> <img height="200px" width="200px" style="text-align: center;" src="https://gitcdn.xyz/repo/MurhafSousli/ngx-progressbar/master/projects/ngx-progressbar-demo/src/assets/logo.svg"> <h1 align="center">Angular Progressbar</h1> </p>
23 lines (22 loc) • 772 B
TypeScript
import { NgProgressRef } from './ng-progress-ref';
import { NgProgressConfig, ProgressConfig } from './ng-progress.interface';
import * as i0 from "@angular/core";
export declare class NgProgress {
private readonly _instances;
config: ProgressConfig;
constructor(config: NgProgressConfig);
/**
* Get or Create progress bar by ID
*/
ref(id?: string, config?: NgProgressConfig): NgProgressRef;
/**
* Destroy all progress bar instances
*/
destroyAll(): void;
/**
* A destroyer function for each progress bar instance
*/
private deleteInstance;
static ɵfac: i0.ɵɵFactoryDeclaration<NgProgress, [{ optional: true; }]>;
static ɵprov: i0.ɵɵInjectableDeclaration<NgProgress>;
}