UNPKG

@joefitter/docx

Version:

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

17 lines (16 loc) 492 B
import { XmlAttributeComponent } from "../../../../../file/xml-components"; export declare enum FooterReferenceType { DEFAULT = "default", FIRST = "first", EVEN = "even" } export interface IFooterReferenceAttributes { readonly type: string; readonly id: string; } export declare class FooterReferenceAttributes extends XmlAttributeComponent<IFooterReferenceAttributes> { protected readonly xmlKeys: { type: string; id: string; }; }