UNPKG

asposewordscloud

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