Remove unused imports

This commit is contained in:
Dolan Miu
2023-06-12 19:45:03 +01:00
parent 28ad740473
commit 668f4f4e78
3 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
// Example of a continuous header // Example of a continuous header
import * as fs from "fs"; import * as fs from "fs";
import { Document, Footer, Header, Packer, Paragraph, SectionType, Tab, TextRun } from "docx"; import { Document, Footer, Header, Packer, Paragraph, SectionType, TextRun } from "docx";
const doc = new Document({ const doc = new Document({
creator: "Creator", creator: "Creator",

View File

@ -1,7 +1,7 @@
// Example of using headers and footers in a new section // Example of using headers and footers in a new section
import * as fs from "fs"; import * as fs from "fs";
import { Document, Footer, Header, Packer, Paragraph, SectionType, Tab, TextRun } from "docx"; import { Document, Footer, Header, Packer, Paragraph, TextRun } from "docx";
const doc = new Document({ const doc = new Document({
creator: "Creator", creator: "Creator",

View File

@ -6,7 +6,6 @@ import {
Packer, Packer,
Paragraph, Paragraph,
PositionalTab, PositionalTab,
Tab,
TextRun, TextRun,
PositionalTabAlignment, PositionalTabAlignment,
PositionalTabRelativeTo, PositionalTabRelativeTo,