member_webapp/@overflow/shared/ui/component/block-progressbar.component.ts
crusader ea812f6e54 ing
2018-05-30 19:00:46 +09:00

19 lines
325 B
TypeScript

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() {
}
}