40 lines
746 B
TypeScript
40 lines
746 B
TypeScript
|
|
/**
|
||
|
|
* Font API clients exports
|
||
|
|
*
|
||
|
|
* Exports API clients and normalization utilities
|
||
|
|
*/
|
||
|
|
|
||
|
|
export {
|
||
|
|
fetchGoogleFontFamily,
|
||
|
|
fetchGoogleFonts,
|
||
|
|
} from './googleFonts';
|
||
|
|
export type {
|
||
|
|
GoogleFontItem,
|
||
|
|
GoogleFontsParams,
|
||
|
|
GoogleFontsResponse,
|
||
|
|
} from './googleFonts';
|
||
|
|
|
||
|
|
export {
|
||
|
|
fetchAllFontshareFonts,
|
||
|
|
fetchFontshareFontBySlug,
|
||
|
|
fetchFontshareFonts,
|
||
|
|
} from './fontshare';
|
||
|
|
export type {
|
||
|
|
FontshareParams,
|
||
|
|
FontshareResponse,
|
||
|
|
} from './fontshare';
|
||
|
|
|
||
|
|
export {
|
||
|
|
normalizeFontshareFont,
|
||
|
|
normalizeFontshareFonts,
|
||
|
|
normalizeGoogleFont,
|
||
|
|
normalizeGoogleFonts,
|
||
|
|
} from './normalize';
|
||
|
|
export type {
|
||
|
|
FontFeatures,
|
||
|
|
FontMetadata,
|
||
|
|
FontStyleUrls,
|
||
|
|
UnifiedFont,
|
||
|
|
UnifiedFontVariant,
|
||
|
|
} from './normalize';
|