UNPKG

asposewordscloud

Version:
26 lines (25 loc) 833 B
import { AttributeInfo } from '../internal/attributeInfo'; import { HtmlSaveOptionsData } from './htmlSaveOptionsData'; export declare const importsMapAzw3SaveOptionsData: { HtmlSaveOptionsData: typeof HtmlSaveOptionsData; }; /** * Container class for azw3 save options. */ export declare class Azw3SaveOptionsData extends HtmlSaveOptionsData { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; /** * Gets or sets the maximum level of headings populated to the navigation map when exporting. */ navigationMapLevel: number; constructor(init?: Partial<Azw3SaveOptionsData>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }