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