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/clightning/home/channel-status-info/channel-status-info.compone...

17 lines
433 B
TypeScript

import { Component, Input } from '@angular/core';
import { ChannelsStatus } from '../../../shared/models/clModels';
@Component({
selector: 'rtl-cl-channel-status-info',
templateUrl: './channel-status-info.component.html',
styleUrls: ['./channel-status-info.component.scss']
})
export class CLChannelStatusInfoComponent {
@Input() channelsStatus: ChannelsStatus = {};
@Input() errorMessage: string;
constructor() {}
}