asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
35 lines (34 loc) • 968 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { ModelInterface } from './modelInterface';
import { FileLink } from './fileLink';
export declare const importsMapSaveResult: {
FileLink: typeof FileLink;
};
/**
* Result of saving.
*/
export declare class SaveResult implements ModelInterface {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the link to destination document.
*/
destDocument: FileLink;
/**
* Gets or sets the link to source document.
*/
sourceDocument: FileLink;
/**
* Gets or sets the list of links to additional items (css, images etc).
*/
additionalItems: Array<FileLink>;
constructor(init?: Partial<SaveResult>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}