export IPropertiesOptions for use by other libraries or code using docx library (#2979)

* 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>
This commit is contained in:
Mayank
2025-03-15 08:48:43 +05:30
committed by GitHub
parent 9c60cfcbc7
commit 250a1301fb
2 changed files with 2 additions and 0 deletions

View File

@ -21,3 +21,4 @@ export * from "./vertical-align";
export * from "./checkbox"; export * from "./checkbox";
export * from "./fonts"; export * from "./fonts";
export * from "./textbox"; export * from "./textbox";
export { type IPropertiesOptions } from "./core-properties";

View File

@ -1,2 +1,3 @@
export * from "./convenience-functions"; export * from "./convenience-functions";
export * from "./values"; export * from "./values";
export type * from "./output-type";