UNPKG

pdf-lib

Version:

Library for creating and modifying PDF files in JavaScript

15 lines (14 loc) 451 B
import PDFOperator from '../../../pdf-operators/PDFOperator'; /** * Set the text rise, Tsise, to rise, which shall be a number expressed in unscaled * text space units. Initial value: 0. */ declare class Ts extends PDFOperator { static of: (rise: number) => Ts; rise: number; constructor(rise: number); toString: () => string; bytesSize: () => number; copyBytesInto: (buffer: Uint8Array) => Uint8Array; } export default Ts;