UNPKG

docx

Version:

Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.

9 lines (8 loc) 288 B
import { XmlComponent } from "../../file/xml-components"; export interface ICompatibilityOptions { readonly doNotExpandShiftReturn?: boolean; readonly version?: number; } export declare class Compatibility extends XmlComponent { constructor(options: ICompatibilityOptions); }