Expose LineWrapper class

This commit is contained in:
Nathanael Anderson 2020-04-08 11:27:17 -05:00
parent f17b0bc160
commit db6a8117d2

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;