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