docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
13 lines (12 loc) • 439 B
TypeScript
import { XmlAttributeComponent, XmlComponent } from "../../../../../file/xml-components";
export interface IDocGridAttributesProperties {
readonly linePitch?: number;
}
export declare class DocGridAttributes extends XmlAttributeComponent<IDocGridAttributesProperties> {
protected readonly xmlKeys: {
linePitch: string;
};
}
export declare class DocumentGrid extends XmlComponent {
constructor(linePitch: number);
}