UNPKG

asposewordscloud

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