UNPKG

text-to-image

Version:

A library for generating an image data URI representing an image containing the text of your choice.

9 lines (8 loc) 298 B
import { Canvas } from 'canvas'; import { ComputedOptions } from '../@types'; export interface BubbleTailOptions { width: number; height: number; } declare const _default: ({ width, height }: BubbleTailOptions) => (canvas: Canvas, conf: ComputedOptions) => Canvas; export default _default;