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) • 356 B
TypeScript
import { XmlAttributeComponent } from '../../../../../../../xml-components';
export declare class NonVisualPropertiesAttributes extends XmlAttributeComponent<{
readonly id?: number;
readonly name?: string;
readonly descr?: string;
}> {
protected readonly xmlKeys: {
id: string;
name: string;
descr: string;
};
}