9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
export type RenderToImageOptions = any;
|
|
|
|
export async function renderToImageAsync(
|
|
glyphs: string,
|
|
options: RenderToImageOptions
|
|
): Promise<string> {
|
|
return '';
|
|
}
|