UNPKG

asposewordscloud

Version:
28 lines (27 loc) 865 B
import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; import { ParagraphLink } from './paragraphLink'; export declare const importsMapParagraphLinkCollection: { LinkElement: typeof LinkElement; ParagraphLink: typeof ParagraphLink; }; /** * The collection of paragraph's links. */ export declare class ParagraphLinkCollection extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of paragraph's links. */ paragraphLinkList: Array<ParagraphLink>; constructor(init?: Partial<ParagraphLinkCollection>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }