refactor: update import paths for AsterSpotBookTicker type

- Moved AsterSpotBookTicker import to the correct module path from "../exchanges/aster/types".
- Cleaned up imports in basis-arb-engine.ts for better organization and clarity.
This commit is contained in:
discountry
2026-04-06 18:54:56 +08:00
parent e81d1396a2
commit d925fd93ee
2 changed files with 2 additions and 1791 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import type { BasisArbConfig } from "../config";
import type { ExchangeAdapter, FundingRateSnapshot } from "../exchanges/adapter";
import type { AccountSnapshot, Depth, AsterSpotBookTicker } from "../exchanges/types";
import type { AccountSnapshot, Depth } from "../exchanges/types";
import type { AsterSpotBookTicker } from "../exchanges/aster/types";
import { AsterSpotRestClient, AsterRestClient } from "../exchanges/aster/gateway";
import { createTradeLog, type TradeLogEntry } from "../logging/trade-log";
import { StrategyEventEmitter } from "./common/event-emitter";