@joefitter/docx
Version:
Generate .docx documents with JavaScript (formerly Office-Clippy)
12 lines (11 loc) • 373 B
TypeScript
import { XmlAttributeComponent } from "../../../file/xml-components";
export interface IFootnoteAttributesProperties {
readonly type?: string;
readonly id: number;
}
export declare class FootnoteAttributes extends XmlAttributeComponent<IFootnoteAttributesProperties> {
protected readonly xmlKeys: {
type: string;
id: string;
};
}