pdf-lib
Version:
Library for creating and modifying PDF files in JavaScript
14 lines (13 loc) • 384 B
TypeScript
import PDFOperator from '../../../pdf-operators/PDFOperator';
/**
* Set the line width in the graphics state
*/
declare class w extends PDFOperator {
static of: (lineWidth: number) => w;
lineWidth: number;
constructor(lineWidth: number);
toString: () => string;
bytesSize: () => number;
copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
export default w;