UNPKG

asposewordscloud

Version:
26 lines (25 loc) 734 B
import { AttributeInfo } from '../internal/attributeInfo'; import { LinkElement } from './linkElement'; export declare const importsMapFieldNames: { LinkElement: typeof LinkElement; }; /** * Represents a collection of merge fields within a document. */ export declare class FieldNames extends LinkElement { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the collection of fields names. */ names: Array<string>; constructor(init?: Partial<FieldNames>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }