asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
31 lines (30 loc) • 1.02 kB
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { FileLink } from './fileLink';
export declare const importsMapModificationOperationResult: {
FileLink: typeof FileLink;
};
/**
* result of the operation which modifies the original document and saves the result.
*/
export declare class ModificationOperationResult implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the link to the dest document (result of the modification operation).
*/
dest: FileLink;
/**
* Gets or sets the link to the source document (source for the modification operation).
*/
source: FileLink;
constructor(init?: Partial<ModificationOperationResult>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}