UNPKG

asposewordscloud

Version:
28 lines (27 loc) 780 B
import { AttributeInfo } from '../internal/attributeInfo'; import { Border } from './border'; import { LinkElement } from './linkElement'; export declare const importsMapBordersCollection: { Border: typeof Border; LinkElement: typeof LinkElement; }; /** * The collection of borders. */ export declare class BordersCollection extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of comments. */ list: Array<Border>; constructor(init?: Partial<BordersCollection>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }