UNPKG

asposewordscloud

Version:
29 lines (28 loc) 990 B
import { AttributeInfo } from '../internal/attributeInfo'; import { TableProperties } from './tableProperties'; import { WordsResponse } from './wordsResponse'; export declare const importsMapTablePropertiesResponse: { TableProperties: typeof TableProperties; WordsResponse: typeof WordsResponse; }; /** * The REST response with a table. * This response is returned by the Service when handling "GET https://api.aspose.cloud/v4.0/words/Test.doc/tables/{0}/properties" REST API requests. */ export declare class TablePropertiesResponse extends WordsResponse { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the table. */ properties: TableProperties; constructor(init?: Partial<TablePropertiesResponse>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }