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/balances-info/balances-info.component.ts

16 lines
358 B
TypeScript

import { Component, Input } from '@angular/core';
@Component({
selector: 'rtl-cl-balances-info',
templateUrl: './balances-info.component.html',
styleUrls: ['./balances-info.component.scss']
})
export class CLBalancesInfoComponent {
@Input() balances = { onchain: 0, lightning: 0, total: 0 };
@Input() errorMessage: string;
constructor() {}
}