js-draw
Version:
Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.
13 lines (12 loc) • 462 B
TypeScript
export interface ImageComponentLocalization {
unlabeledImageNode: string;
text: (text: string) => string;
imageNode: (description: string) => string;
stroke: string;
svgObject: string;
emptyBackground: string;
gridBackground: string;
filledBackgroundWithColor: (color: string) => string;
restyledElement: (elementDescription: string) => string;
}
export declare const defaultComponentLocalization: ImageComponentLocalization;