UNPKG

asposewordscloud

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