UNPKG

asposewordscloud

Version:
28 lines (27 loc) 774 B
import { AttributeInfo } from '../internal/attributeInfo'; import { CommentLink } from './commentLink'; import { NodeLink } from './nodeLink'; export declare const importsMapCommentRangeEnd: { CommentLink: typeof CommentLink; NodeLink: typeof NodeLink; }; /** * Comment range end link. */ export declare class CommentRangeEnd 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<CommentRangeEnd>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }