asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
29 lines (28 loc) • 937 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { Runs } from './runs';
import { WordsResponse } from './wordsResponse';
export declare const importsMapRunsResponse: {
Runs: typeof Runs;
WordsResponse: typeof WordsResponse;
};
/**
* The REST response with a collection of Run elements.
* This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/{paragraphPath}/runs" REST API requests.
*/
export declare class RunsResponse extends WordsResponse {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the collection of Run elements.
*/
runs: Runs;
constructor(init?: Partial<RunsResponse>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}