asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
34 lines (33 loc) • 950 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { NodeLink } from './nodeLink';
import { TableProperties } from './tableProperties';
import { TableRow } from './tableRow';
export declare const importsMapTable: {
NodeLink: typeof NodeLink;
TableProperties: typeof TableProperties;
TableRow: typeof TableRow;
};
/**
* DTO container with a table element.
*/
export declare class Table extends NodeLink {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the collection of table's rows.
*/
tableRowList: Array<TableRow>;
/**
* Gets or sets table properties.
*/
tableProperties: TableProperties;
constructor(init?: Partial<Table>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}