Files
Fluxup_PAP/node_modules/expo-font/mocks/ExpoFontUtils.ts
2026-03-10 16:18:05 +00:00

16 lines
309 B
TypeScript

import type { RenderToImageResult } from '../src/FontUtils.types';
export type RenderToImageOptions = any;
export async function renderToImageAsync(
glyphs: string,
options: RenderToImageOptions
): Promise<RenderToImageResult> {
return {
width: 0,
height: 0,
scale: 1,
uri: '',
};
}