UNPKG

pdf-lib

Version:

Library for creating and modifying PDF files in JavaScript

14 lines (13 loc) 388 B
import PDFOperator from '../../../pdf-operators/PDFOperator'; /** * Set the miter limit in the graphics state */ declare class M extends PDFOperator { static of: (miterLimit: number) => M; miterLimit: number; constructor(miterLimit: number); toString: () => string; bytesSize: () => number; copyBytesInto: (buffer: Uint8Array) => Uint8Array; } export default M;