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