mirror of
https://github.com/foliojs/pdfkit.git
synced 2025-12-08 20:15:54 +00:00
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
/*
|
|
PDFStructureContent - a reference to a marked structure content
|
|
By Ben Schmidt
|
|
*/
|
|
|
|
class PDFStructureContent {
|
|
constructor(pageRef, mcid) {
|
|
this.refs = [{ pageRef, mcid }];
|
|
}
|
|
|
|
push(structContent) {
|
|
structContent.refs.forEach((ref) => this.refs.push(ref));
|
|
}
|
|
}
|
|
|
|
export default PDFStructureContent;
|