member_webapp/@overflow/shared/ui/component/block-progressbar.component.ts

19 lines
325 B
TypeScript
Raw Normal View History

2018-05-29 12:18:43 +00:00
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'of-block-progressbar',
templateUrl: './block-progressbar.component.html',
})
export class BlockProgressbarComponent implements OnInit {
@Input() target: any;
@Input() pending: boolean;
constructor(
) {
}
ngOnInit() {
}
}