Mandatory Sections
This commit is contained in:
@ -3,14 +3,15 @@
|
||||
import * as fs from "fs";
|
||||
import { Document, Packer, PageOrientation, Paragraph } from "../build";
|
||||
|
||||
const doc = new Document(undefined, {
|
||||
orientation: PageOrientation.LANDSCAPE,
|
||||
const doc = new Document();
|
||||
|
||||
doc.addSection({
|
||||
size: {
|
||||
orientation: PageOrientation.LANDSCAPE,
|
||||
},
|
||||
children: [new Paragraph("Hello World")],
|
||||
});
|
||||
|
||||
const paragraph = new Paragraph("Hello World");
|
||||
|
||||
doc.add(paragraph);
|
||||
|
||||
const packer = new Packer();
|
||||
|
||||
packer.toBuffer(doc).then((buffer) => {
|
||||
|
Reference in New Issue
Block a user