Files
docx-js/src/index.ts

8 lines
255 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";
export * from "./util";
2023-02-25 20:18:00 +00:00
export * from "./patcher";