pdf-lib
Version:
Library for creating and modifying PDF files in JavaScript
16 lines (15 loc) • 530 B
TypeScript
import PDFOperator from '../../../pdf-operators/PDFOperator';
/**
* Set the text leading, Tl, to leading, which shall be a number expressed in
* unleading text space units. Text leading shall be used only by the T*, ', and "
* operators. Initial value: 0.
*/
declare class TL extends PDFOperator {
static of: (leading: number) => TL;
leading: number;
constructor(leading: number);
toString: () => string;
bytesSize: () => number;
copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
export default TL;