You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/loop/loop-status/loop-status.component.ts

17 lines
391 B
TypeScript

import { Component, OnInit, Input } from '@angular/core';
import { LoopStatus } from '../../../shared/models/loopModels';
@Component({
selector: 'rtl-loop-status',
templateUrl: './loop-status.component.html',
styleUrls: ['./loop-status.component.scss']
})
export class LoopStatusComponent implements OnInit {
@Input() loopStatus: LoopStatus;
constructor() {}
ngOnInit() {}
}