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