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