asposewordscloud
Version: 
Aspose.Words Cloud SDK for Node.js
28 lines (27 loc) • 796 B
TypeScript
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;
}