UNPKG

docx

Version:

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

25 lines (24 loc) 766 B
import { XmlAttributeComponent } from '../../xml-components'; import { IDistance } from '../drawing'; export type IAnchorAttributes = { readonly allowOverlap?: "0" | "1"; readonly behindDoc?: "0" | "1"; readonly layoutInCell?: "0" | "1"; readonly locked?: "0" | "1"; readonly relativeHeight?: number; readonly simplePos?: "0" | "1"; } & IDistance; export declare class AnchorAttributes extends XmlAttributeComponent<IAnchorAttributes> { protected readonly xmlKeys: { distT: string; distB: string; distL: string; distR: string; allowOverlap: string; behindDoc: string; layoutInCell: string; locked: string; relativeHeight: string; simplePos: string; }; }