docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
15 lines (14 loc) • 514 B
TypeScript
import { IBorderOptions } from "../../../file/border";
import { IgnoreIfEmptyXmlComponent, XmlComponent } from "../../../file/xml-components";
export interface IBordersOptions {
readonly top?: IBorderOptions;
readonly bottom?: IBorderOptions;
readonly left?: IBorderOptions;
readonly right?: IBorderOptions;
}
export declare class Border extends IgnoreIfEmptyXmlComponent {
constructor(options: IBordersOptions);
}
export declare class ThematicBreak extends XmlComponent {
constructor();
}