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