16 lines
309 B
TypeScript
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: '',
|
|
};
|
|
}
|