17 lines
307 B
TypeScript
17 lines
307 B
TypeScript
/**
|
|
* Font API clients exports
|
|
*
|
|
* Exports API clients and normalization utilities
|
|
*/
|
|
|
|
// Proxy API (primary)
|
|
export {
|
|
fetchFontsByIds,
|
|
fetchProxyFontById,
|
|
fetchProxyFonts,
|
|
} from './proxy/proxyFonts';
|
|
export type {
|
|
ProxyFontsParams,
|
|
ProxyFontsResponse,
|
|
} from './proxy/proxyFonts';
|