UNPKG

docx

Version:

Generate .docx documents with JavaScript (formerly Office-Clippy)

10 lines (9 loc) 267 B
import { XmlComponent } from "../../../file/xml-components"; export interface ISpacingProperties { after?: number; before?: number; line?: number; } export declare class Spacing extends XmlComponent { constructor(opts: ISpacingProperties); }