Files
docx-js/src/index.ts

8 lines
276 B
TypeScript
Raw Normal View History

// Internally, the wrapper is a 'File', but export to the end user as a 'Document'
// Use of 'File' also works
2018-09-19 23:04:34 +01:00
export { File as Document } from "./file";
export * from "./file";
export * from "./export";
2018-09-24 22:00:08 +01:00
export * from "./import-dotx";
2020-12-24 03:37:43 +00:00
export * from "./convenience-functions";