docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
15 lines (14 loc) • 403 B
TypeScript
import { XmlAttributeComponent } from "../../../file/xml-components";
export declare class RelationshipAttributes extends XmlAttributeComponent<{
readonly id: string;
readonly type: string;
readonly target: string;
readonly targetMode?: string;
}> {
protected readonly xmlKeys: {
id: string;
type: string;
target: string;
targetMode: string;
};
}