2026-01-06 14:38:55 +03:00
|
|
|
/**
|
|
|
|
|
* Font API clients exports
|
|
|
|
|
*
|
|
|
|
|
* Exports API clients and normalization utilities
|
|
|
|
|
*/
|
|
|
|
|
|
2026-01-29 14:33:12 +03:00
|
|
|
// Proxy API (PRIMARY - NEW)
|
|
|
|
|
export {
|
2026-02-01 16:13:13 +03:00
|
|
|
fetchFontsByIds,
|
2026-01-29 14:33:12 +03:00
|
|
|
fetchProxyFontById,
|
|
|
|
|
fetchProxyFonts,
|
|
|
|
|
} from './proxy/proxyFonts';
|
|
|
|
|
export type {
|
|
|
|
|
ProxyFontsParams,
|
|
|
|
|
ProxyFontsResponse,
|
|
|
|
|
} from './proxy/proxyFonts';
|
|
|
|
|
|
|
|
|
|
// Google Fonts API (DEPRECATED - kept for backward compatibility)
|
2026-01-06 14:38:55 +03:00
|
|
|
export {
|
|
|
|
|
fetchGoogleFontFamily,
|
|
|
|
|
fetchGoogleFonts,
|
2026-01-06 15:00:31 +03:00
|
|
|
} from './google/googleFonts';
|
2026-01-06 14:38:55 +03:00
|
|
|
export type {
|
|
|
|
|
GoogleFontItem,
|
|
|
|
|
GoogleFontsParams,
|
|
|
|
|
GoogleFontsResponse,
|
2026-01-06 15:00:31 +03:00
|
|
|
} from './google/googleFonts';
|
2026-01-06 14:38:55 +03:00
|
|
|
|
2026-01-29 14:33:12 +03:00
|
|
|
// Fontshare API (DEPRECATED - kept for backward compatibility)
|
2026-01-06 14:38:55 +03:00
|
|
|
export {
|
|
|
|
|
fetchAllFontshareFonts,
|
|
|
|
|
fetchFontshareFontBySlug,
|
|
|
|
|
fetchFontshareFonts,
|
2026-01-06 15:00:31 +03:00
|
|
|
} from './fontshare/fontshare';
|
2026-01-06 14:38:55 +03:00
|
|
|
export type {
|
|
|
|
|
FontshareParams,
|
|
|
|
|
FontshareResponse,
|
2026-01-06 15:00:31 +03:00
|
|
|
} from './fontshare/fontshare';
|