UNPKG

asposewordscloud

Version:
27 lines (26 loc) 756 B
import { AttributeInfo } from '../internal/attributeInfo'; import { ModelInterface } from './modelInterface'; import { WordsApiLink } from './wordsApiLink'; export declare const importsMapLinkElement: { WordsApiLink: typeof WordsApiLink; }; /** * Reference to a document. */ export declare class LinkElement implements ModelInterface { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the link to the document. */ link: WordsApiLink; constructor(init?: Partial<LinkElement>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }