From 653567f5ff68e1625c844423e7009b57f2d7d432 Mon Sep 17 00:00:00 2001 From: Oleg Nechiporenko Date: Wed, 21 Jun 2023 02:46:14 +0500 Subject: [PATCH] fix: type error --- src/services/PriceFeed/ws/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/PriceFeed/ws/index.ts b/src/services/PriceFeed/ws/index.ts index 86d50bd..f086800 100644 --- a/src/services/PriceFeed/ws/index.ts +++ b/src/services/PriceFeed/ws/index.ts @@ -1,6 +1,6 @@ import type WebSocket from 'ws'; import PriceFeedSubscription, { type SubscriptionType, type Subscription } from './PriceFeedSubscription.js'; -import { BasicAuthCredentials } from '../../../types.js'; +import type { BasicAuthCredentials } from '../../../types.js'; export * as schemas from './schemas/index.js'; export class PriceFeedWS {