@adobe/pdfservices-node-sdk
Version:
The Adobe PDF Services Node.js SDK provides APIs for creating, combining, exporting and manipulating PDFs.
18 lines (17 loc) • 376 B
TypeScript
/**
* Supported rotation angle values for {@link RotatePagesJob} used with {@link RotatePagesParams}.
*/
export declare enum Angle {
/**
* Represents 90 degrees clockwise rotation
*/
_90 = 90,
/**
* Represents 180 degrees clockwise rotation
*/
_180 = 180,
/**
* Represents 270 degrees clockwise rotation
*/
_270 = 270
}