From 79dffc873afd6d3b71193437da00fb0bb1d8f29b Mon Sep 17 00:00:00 2001 From: Dolan Date: Tue, 18 Sep 2018 00:51:35 +0100 Subject: [PATCH] Organise imports --- demo/demo16.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/demo16.ts b/demo/demo16.ts index 336519a602..f14674e3f2 100644 --- a/demo/demo16.ts +++ b/demo/demo16.ts @@ -1,7 +1,7 @@ // Multiple sections and headers // Import from 'docx' rather than '../build' if you install from npm import * as fs from "fs"; -import { Document, Packer, PageNumberFormat, PageOrientation, Paragraph, HeaderReferenceType, FooterReferenceType } from "../build"; +import { Document, FooterReferenceType, HeaderReferenceType, Packer, PageNumberFormat, PageOrientation, Paragraph } from "../build"; const doc = new Document();