pdf-lib
Version:
Library for creating and modifying PDF files in JavaScript
16 lines (15 loc) • 521 B
TypeScript
import PDFOperator from '../../../pdf-operators/PDFOperator';
/**
* Set the flatness tolerance in the graphics state.
* flatness is a number in the * range 0 to 100; a value of 0 shall specify the
* output device’s default flatness tolerance.
*/
declare class i extends PDFOperator {
static of: (flatness: number) => i;
flatness: number;
constructor(flatness: number);
toString: () => string;
bytesSize: () => number;
copyBytesInto: (buffer: Uint8Array) => Uint8Array;
}
export default i;