* export IPropertiesOptions for use by other libraries or code using docx library * fixes #2978: export OutputTypes * Export file in main index file * Move type export to inside --------- Co-authored-by: Dolan Miu <dolan_miu@hotmail.com>
25 lines
725 B
TypeScript
25 lines
725 B
TypeScript
export * from "./paragraph";
|
|
export * from "./table";
|
|
export * from "./file";
|
|
export * from "./file-child";
|
|
export * from "./numbering";
|
|
export * from "./media";
|
|
export * from "./drawing";
|
|
export * from "./document";
|
|
export * from "./shading";
|
|
export * from "./styles";
|
|
export * from "./table-of-contents";
|
|
export * from "./xml-components";
|
|
export * from "./header-wrapper";
|
|
export * from "./footer-wrapper";
|
|
export * from "./header";
|
|
export * from "./footnotes";
|
|
export * from "./track-revision";
|
|
export * from "./shared";
|
|
export * from "./border";
|
|
export * from "./vertical-align";
|
|
export * from "./checkbox";
|
|
export * from "./fonts";
|
|
export * from "./textbox";
|
|
export { type IPropertiesOptions } from "./core-properties";
|