Merge pull request #1101 from NathanaelA/expose_linewrapper

Expose LineWrapper class
This commit is contained in:
Luiz Américo 2020-04-08 14:49:04 -03:00 committed by GitHub
commit 9bcfd64758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,7 @@ import ImagesMixin from './mixins/images';
import AnnotationsMixin from './mixins/annotations';
import OutlineMixin from './mixins/outline';
import AcroFormMixin from './mixins/acroform';
import LineWrapper from './line_wrapper';
class PDFDocument extends stream.Readable {
constructor(options = {}) {
@ -336,4 +337,6 @@ mixin(AnnotationsMixin);
mixin(OutlineMixin);
mixin(AcroFormMixin);
PDFDocument.LineWrapper = LineWrapper;
export default PDFDocument;