UNPKG

@ng-arthur/core

Version:

@ng-arthur/core for Angular 8+ Components

14 lines (13 loc) 567 B
import { AfterViewInit, AfterContentInit, OnDestroy, OnChanges, SimpleChanges } from '@angular/core'; import { ProgressBarService } from './progress-bar.service'; export declare class ProgressBarComponent implements OnDestroy, AfterViewInit, AfterContentInit, OnChanges { private progressBarService; options: any; progress: boolean; private progressEmitter$; constructor(progressBarService: ProgressBarService); ngOnDestroy(): void; ngAfterViewInit(): void; ngAfterContentInit(): void; ngOnChanges(changes: SimpleChanges): void; }