UNPKG

js-draw

Version:

Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.

11 lines (10 loc) 402 B
export interface TextRendererLocalization { pathNodeCount(pathCount: number): string; textNodeCount(nodeCount: number): string; imageNodeCount(nodeCount: number): string; textNode(content: string): string; unlabeledImageNode: string; imageNode(label: string): string; rerenderAsText: string; } export declare const defaultTextRendererLocalization: TextRendererLocalization;