UNPKG

pdf-lib

Version:

Library for creating and modifying PDF files in JavaScript

15 lines (14 loc) 466 B
import PDFOperator from '../../../pdf-operators/PDFOperator'; /** * Set the line dash pattern in the graphics state */ declare class d extends PDFOperator { static of: (dashArray: number[], dashPhase: number) => d; dashArray: [number, number]; dashPhase: number; constructor(dashArray: number[], dashPhase: number); toString: () => string; bytesSize: () => number; copyBytesInto: (buffer: Uint8Array) => Uint8Array; } export default d;