UNPKG

asposewordscloud

Version:
28 lines (27 loc) 821 B
import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; import { TableLink } from './tableLink'; export declare const importsMapTableLinkCollection: { LinkElement: typeof LinkElement; TableLink: typeof TableLink; }; /** * The collection of table's links. */ export declare class TableLinkCollection extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of table's links. */ tableLinkList: Array<TableLink>; constructor(init?: Partial<TableLinkCollection>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }