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/shared/components/ln-services/boltz/swap-service-info/swap-service-info.component.ts

19 lines
538 B
TypeScript

import { Component, Input } from '@angular/core';
import { SwapTypeEnum } from '../../../../services/consts-enums-functions';
import { ServiceInfo } from '../../../../models/boltzModels';
@Component({
selector: 'rtl-boltz-service-info',
templateUrl: './swap-service-info.component.html',
styleUrls: ['./swap-service-info.component.scss']
})
export class SwapServiceInfoComponent {
@Input() serviceInfo: ServiceInfo = {};
@Input() direction = SwapTypeEnum.SWAP_OUT;
public swapTypeEnum = SwapTypeEnum;
constructor() {}
}