UNPKG

pm-controls

Version:
19 lines (17 loc) 485 B
import { Component, Input, ElementRef, ViewChild } from '@angular/core'; @Component({ selector: 'pm-busy-indicator-linear', //templateUrl: './app/controls/components/busy-indicator/busy-indicator-linear/busy-indicator-linear.html', templateUrl: './busy-indicator-linear.html' }) export class BusyIndicatorLinearComponent { @Input() BusyMessage; @Input() IsBusy; @ViewChild('busy-indicator-linear-path') path: ElementRef; ngOnInit() { } }