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