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,6 +1,6 @@
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
import { Observable, map, of } from 'rxjs';
import { FederationUtxo } from '@app/interfaces/node-api.interface';
import { FederationUtxo } from '@interfaces/node-api.interface';
@Component({
selector: 'app-expired-utxos-stats',

View File

@@ -3,7 +3,7 @@ import { Observable, Subject, combineLatest, of, timer } from 'rxjs';
import { delayWhen, filter, map, share, shareReplay, switchMap, takeUntil, tap, throttleTime } from 'rxjs/operators';
import { ApiService } from '@app/services/api.service';
import { Env, StateService } from '@app/services/state.service';
import { AuditStatus, CurrentPegs, FederationAddress } from '@app/interfaces/node-api.interface';
import { AuditStatus, CurrentPegs, FederationAddress } from '@interfaces/node-api.interface';
import { WebsocketService } from '@app/services/websocket.service';
@Component({

View File

@@ -4,7 +4,7 @@ import { BehaviorSubject, Observable, Subject, combineLatest, of, timer } from '
import { delayWhen, filter, map, share, shareReplay, switchMap, takeUntil, tap, throttleTime } from 'rxjs/operators';
import { ApiService } from '@app/services/api.service';
import { Env, StateService } from '@app/services/state.service';
import { AuditStatus, CurrentPegs, FederationUtxo } from '@app/interfaces/node-api.interface';
import { AuditStatus, CurrentPegs, FederationUtxo } from '@interfaces/node-api.interface';
import { WebsocketService } from '@app/services/websocket.service';
@Component({

View File

@@ -4,7 +4,7 @@ import { BehaviorSubject, Observable, Subject, Subscription, combineLatest, of,
import { delayWhen, filter, map, share, shareReplay, switchMap, take, takeUntil, tap, throttleTime } from 'rxjs/operators';
import { ApiService } from '@app/services/api.service';
import { Env, StateService } from '@app/services/state.service';
import { AuditStatus, CurrentPegs, RecentPeg } from '@app/interfaces/node-api.interface';
import { AuditStatus, CurrentPegs, RecentPeg } from '@interfaces/node-api.interface';
import { WebsocketService } from '@app/services/websocket.service';
import { SeoService } from '@app/services/seo.service';

View File

@@ -1,6 +1,6 @@
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { PegsVolume } from '@app/interfaces/node-api.interface';
import { PegsVolume } from '@interfaces/node-api.interface';
@Component({
selector: 'app-recent-pegs-stats',

View File

@@ -1,6 +1,6 @@
import { Component, ChangeDetectionStrategy, Input, OnChanges, OnInit, HostListener } from '@angular/core';
import { EChartsOption } from '@app/graphs/echarts';
import { CurrentPegs } from '@app/interfaces/node-api.interface';
import { CurrentPegs } from '@interfaces/node-api.interface';
@Component({

View File

@@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
import { Env, StateService } from '@app/services/state.service';
import { CurrentPegs } from '@app/interfaces/node-api.interface';
import { CurrentPegs } from '@interfaces/node-api.interface';
@Component({
selector: 'app-reserves-supply-stats',