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

16 lines
380 B
TypeScript

import { Component, Input } from '@angular/core';
import { Fees } from '../../../shared/models/clModels';
@Component({
selector: 'rtl-cl-fee-info',
templateUrl: './fee-info.component.html',
styleUrls: ['./fee-info.component.scss']
})
export class CLFeeInfoComponent {
@Input() fees: Fees;
@Input() errorMessage: string;
totalFees = [{ name: 'Total', value: 0 }];
}