UNPKG

pdf-lib

Version:

Library for creating and modifying PDF files in JavaScript

17 lines (16 loc) 492 B
import PDFOperator from '../../../pdf-operators/PDFOperator'; /** * (lowercase L) Append a straight line segment from the current point to the * point (x, y). * The new current point shall be (x, y). */ declare class l extends PDFOperator { static of: (x: number, y: number) => l; x: number; y: number; constructor(x: number, y: number); toString: () => string; bytesSize: () => number; copyBytesInto: (buffer: Uint8Array) => Uint8Array; } export default l;