2026-01-06 14:38:55 +03:00
|
|
|
/**
|
|
|
|
|
* Font API clients exports
|
|
|
|
|
*
|
|
|
|
|
* Exports API clients and normalization utilities
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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';
|
2026-01-06 14:38:55 +03:00
|
|
|
|
|
|
|
|
export {
|
|
|
|
|
normalizeFontshareFont,
|
|
|
|
|
normalizeFontshareFonts,
|
|
|
|
|
normalizeGoogleFont,
|
|
|
|
|
normalizeGoogleFonts,
|
2026-01-06 15:00:31 +03:00
|
|
|
} from './normalize/normalize';
|