asposewordscloud
Version: 
Aspose.Words Cloud SDK for Node.js
22 lines (21 loc) • 678 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { OdtSaveOptionsData } from './odtSaveOptionsData';
export declare const importsMapOttSaveOptionsData: {
    OdtSaveOptionsData: typeof OdtSaveOptionsData;
};
/**
 * Container class for ott save options.
 */
export declare class OttSaveOptionsData extends OdtSaveOptionsData {
    /**
     * Attribute type map
     */
    static attributeTypeMap: Array<AttributeInfo>;
    /**
     * Returns attribute type map
     */
    static getAttributeTypeMap(): AttributeInfo[];
    constructor(init?: Partial<OttSaveOptionsData>);
    collectFilesContent(_resultFilesContent: Array<any>): void;
    validate(): void;
}