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/cln/network-info/on-chain-fee-estimates/on-chain-fee-estimates.comp...

18 lines
425 B
TypeScript

import { Component, Input } from '@angular/core';
import { FeeRates } from '../../../shared/models/clnModels';
@Component({
selector: 'rtl-cln-onchain-fee-estimates',
templateUrl: './on-chain-fee-estimates.component.html',
styleUrls: ['./on-chain-fee-estimates.component.scss']
})
export class CLNOnChainFeeEstimatesComponent {
@Input() feeRates: FeeRates;
@Input() errorMessage: string;
constructor() { }
}