UNPKG

keysender

Version:

Node.js keyboard and mouse inputs emulator, global hotkey register for Windows

10 lines (9 loc) 374 B
import { TextToImgOptions } from "./types"; /** * Draws text using the specified font `(supports .ttf and .otf only)` * @param text - text to draw * @param path - path to font * @param fontSize - font size in px */ declare const textToImg: (text: string, path: string, fontSize: number, options?: TextToImgOptions) => import("./types").Image; export default textToImg;