From 9427f4e50f7f5dad648b7454ff5a35b3fd26cff8 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Sun, 5 Apr 2026 09:33:58 +0300 Subject: [PATCH] feat(Font): re-export FontNetworkError and FontResponseError from entity barrel --- src/entities/Font/index.ts | 5 +++++ src/entities/Font/lib/index.ts | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/src/entities/Font/index.ts b/src/entities/Font/index.ts index f23ed08..f4f0782 100644 --- a/src/entities/Font/index.ts +++ b/src/entities/Font/index.ts @@ -103,6 +103,11 @@ export { UNIFIED_FONTS, } from './lib/mocks'; +export { + FontNetworkError, + FontResponseError, +} from './lib/errors/errors'; + // UI elements export { FontApplicator, diff --git a/src/entities/Font/lib/index.ts b/src/entities/Font/lib/index.ts index 532d5b8..7445d2a 100644 --- a/src/entities/Font/lib/index.ts +++ b/src/entities/Font/lib/index.ts @@ -56,3 +56,8 @@ export { type MockUnifiedFontOptions, UNIFIED_FONTS, } from './mocks'; + +export { + FontNetworkError, + FontResponseError, +} from './errors/errors';