Change @app/interfaces to new @interfaces path alias

This commit is contained in:
wiz
2024-10-23 11:09:38 +09:00
parent 133df2e4be
commit 221658f6bf
101 changed files with 133 additions and 132 deletions

View File

@@ -1,9 +1,9 @@
import { ChangeDetectionStrategy, ChangeDetectorRef, Component, HostListener, Input, OnInit } from '@angular/core';
import { Observable, Subscription, of, switchMap, tap } from 'rxjs';
import { StateService } from '@app/services/state.service';
import { BlockExtended } from '@app/interfaces/node-api.interface';
import { BlockExtended } from '@interfaces/node-api.interface';
import { WebsocketService } from '@app/services/websocket.service';
import { MempoolInfo, Recommendedfees } from '@app/interfaces/websocket.interface';
import { MempoolInfo, Recommendedfees } from '@interfaces/websocket.interface';
import { ActivatedRoute, ParamMap, Router } from '@angular/router';
import { RelativeUrlPipe } from '@app/shared/pipes/relative-url/relative-url.pipe';