UNPKG

asposewordscloud

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