asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
28 lines (27 loc) • 794 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { SaveResult } from './saveResult';
import { WordsResponse } from './wordsResponse';
export declare const importsMapSaveResponse: {
SaveResult: typeof SaveResult;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a save result.
*/
export declare class SaveResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the save result.
*/
saveResult: SaveResult;
constructor(init?: Partial<SaveResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}