From 241d9deb84a4c33fca6c0a32311c5336dcf1b450 Mon Sep 17 00:00:00 2001 From: Oleg Nechiporenko Date: Wed, 21 Jun 2023 02:38:31 +0500 Subject: [PATCH] fix: type error --- src/services/BlockchainService/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/BlockchainService/index.ts b/src/services/BlockchainService/index.ts index a19e069..06ce1fa 100644 --- a/src/services/BlockchainService/index.ts +++ b/src/services/BlockchainService/index.ts @@ -21,7 +21,7 @@ import { sourceAtomicHistorySchema, targetAtomicHistorySchema } from './schemas/ import { makePartial } from '../../utils/index.js'; import type { networkCodes } from '../../constants/index.js'; import { fetchWithValidation } from 'simple-typed-fetch'; -import { BasicAuthCredentials } from '../../types.js'; +import type { BasicAuthCredentials } from '../../types.js'; type IAdminAuthHeaders = { auth: string