asposewordscloud
Version:
Aspose.Words Cloud SDK for Node.js
26 lines (25 loc) • 871 B
TypeScript
import { AttributeInfo } from '../internal/attributeInfo';
import { FixedPageSaveOptionsData } from './fixedPageSaveOptionsData';
export declare const importsMapPsSaveOptionsData: {
FixedPageSaveOptionsData: typeof FixedPageSaveOptionsData;
};
/**
* Container class for ps save options.
*/
export declare class PsSaveOptionsData extends FixedPageSaveOptionsData {
/**
* Attribute type map
*/
static attributeTypeMap: Array<AttributeInfo>;
/**
* Returns attribute type map
*/
static getAttributeTypeMap(): AttributeInfo[];
/**
* Gets or sets a value indicating whether the document should be saved using a booklet printing layout.
*/
useBookFoldPrintingSettings: boolean;
constructor(init?: Partial<PsSaveOptionsData>);
collectFilesContent(_resultFilesContent: Array<any>): void;
validate(): void;
}