docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
12 lines (11 loc) • 312 B
TypeScript
import { XmlAttributeComponent, XmlComponent } from '../../xml-components';
export declare class WordWrapAttributes extends XmlAttributeComponent<{
readonly val: 0;
}> {
protected readonly xmlKeys: {
val: string;
};
}
export declare class WordWrap extends XmlComponent {
constructor();
}