asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
29 lines (28 loc) • 987 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { SplitDocumentResult } from './splitDocumentResult';
import { WordsResponse } from './wordsResponse';
export declare const importsMapSplitDocumentResponse: {
SplitDocumentResult: typeof SplitDocumentResult;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a result of document splitting.
* This response should be returned by the service when handling: POST /{name}/split.
*/
export declare class SplitDocumentResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the result of document splitting.
*/
splitResult: SplitDocumentResult;
constructor(init?: Partial<SplitDocumentResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}