docx
Version:
Easily generate .docx files with JS/TS with a nice declarative API. Works for Node and on the Browser.
19 lines (18 loc) • 636 B
TypeScript
import { IMediaDataTransformation } from '../../../../../../../media';
import { XmlAttributeComponent, XmlComponent } from '../../../../../../../xml-components';
export declare class FormAttributes extends XmlAttributeComponent<{
readonly flipVertical?: boolean;
readonly flipHorizontal?: boolean;
readonly rotation?: number;
}> {
protected readonly xmlKeys: {
flipVertical: string;
flipHorizontal: string;
rotation: string;
};
}
export declare class Form extends XmlComponent {
private readonly extents;
private readonly offset;
constructor(options: IMediaDataTransformation);
}