asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
28 lines (27 loc) • 782 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { CommentLink } from './commentLink';
import { NodeLink } from './nodeLink';
export declare const importsMapCommentRangeStart: {
CommentLink: typeof CommentLink;
NodeLink: typeof NodeLink;
};
/**
* Comment range start link.
*/
export declare class CommentRangeStart extends NodeLink {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets the link to comment.
*/
commentLink: CommentLink;
constructor(init?: Partial<CommentRangeStart>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}