39 lines
862 B
TypeScript
39 lines
862 B
TypeScript
/**
|
|
* Font API clients exports
|
|
*
|
|
* Exports API clients and normalization utilities
|
|
*/
|
|
|
|
// Proxy API (PRIMARY - NEW)
|
|
export {
|
|
fetchFontsByIds,
|
|
fetchProxyFontById,
|
|
fetchProxyFonts,
|
|
} from './proxy/proxyFonts';
|
|
export type {
|
|
ProxyFontsParams,
|
|
ProxyFontsResponse,
|
|
} from './proxy/proxyFonts';
|
|
|
|
// Google Fonts API (DEPRECATED - kept for backward compatibility)
|
|
export {
|
|
fetchGoogleFontFamily,
|
|
fetchGoogleFonts,
|
|
} from './google/googleFonts';
|
|
export type {
|
|
GoogleFontItem,
|
|
GoogleFontsParams,
|
|
GoogleFontsResponse,
|
|
} from './google/googleFonts';
|
|
|
|
// Fontshare API (DEPRECATED - kept for backward compatibility)
|
|
export {
|
|
fetchAllFontshareFonts,
|
|
fetchFontshareFontBySlug,
|
|
fetchFontshareFonts,
|
|
} from './fontshare/fontshare';
|
|
export type {
|
|
FontshareParams,
|
|
FontshareResponse,
|
|
} from './fontshare/fontshare';
|