feat(Font): re-export FontNetworkError and FontResponseError from entity barrel

This commit is contained in:
Ilia Mashkov
2026-04-05 09:33:58 +03:00
parent ed9791c176
commit 9427f4e50f
2 changed files with 10 additions and 0 deletions

View File

@@ -103,6 +103,11 @@ export {
UNIFIED_FONTS, UNIFIED_FONTS,
} from './lib/mocks'; } from './lib/mocks';
export {
FontNetworkError,
FontResponseError,
} from './lib/errors/errors';
// UI elements // UI elements
export { export {
FontApplicator, FontApplicator,

View File

@@ -56,3 +56,8 @@ export {
type MockUnifiedFontOptions, type MockUnifiedFontOptions,
UNIFIED_FONTS, UNIFIED_FONTS,
} from './mocks'; } from './mocks';
export {
FontNetworkError,
FontResponseError,
} from './errors/errors';