canvas-editor-pdf
Version:
pdf exporter to canvas-editor
13 lines (11 loc) • 358 B
TypeScript
import { AbstractRichText } from './AbstractRichText';
import { DrawPdf } from '../DrawPdf';
import { Context2d } from 'jspdf';
export declare class Underline extends AbstractRichText {
private options;
constructor(draw: DrawPdf);
private _drawLine;
private _drawDouble;
private _drawWave;
render(ctx2d: Context2d): void;
}