docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
13 lines (12 loc) • 338 B
TypeScript
import { XmlAttributeComponent } from '../xml-components';
export declare class CustomPropertyAttributes extends XmlAttributeComponent<{
readonly formatId: string;
readonly pid: string;
readonly name: string;
}> {
protected readonly xmlKeys: {
formatId: string;
pid: string;
name: string;
};
}