UNPKG

asposewordscloud

Version:
22 lines (21 loc) 678 B
import { AttributeInfo } from '../internal/attributeInfo'; import { DocSaveOptionsData } from './docSaveOptionsData'; export declare const importsMapDotSaveOptionsData: { DocSaveOptionsData: typeof DocSaveOptionsData; }; /** * Container class for dot save options. */ export declare class DotSaveOptionsData extends DocSaveOptionsData { /** * Attribute type map */ static attributeTypeMap: Array<AttributeInfo>; /** * Returns attribute type map */ static getAttributeTypeMap(): AttributeInfo[]; constructor(init?: Partial<DotSaveOptionsData>); collectFilesContent(_resultFilesContent: Array<any>): void; validate(): void; }