canvas-editor-pdf
Version:
pdf exporter to canvas-editor
13 lines (11 loc) • 406 B
TypeScript
import { Context2d } from 'jspdf';
import { IRowElement } from '../../../interface/Row';
import { DrawPdf } from '../DrawPdf';
export declare class LineBreakParticle {
private options;
static readonly WIDTH = 12;
static readonly HEIGHT = 9;
static readonly GAP = 3;
constructor(draw: DrawPdf);
render(ctx2d: Context2d, element: IRowElement, x: number, y: number): void;
}