UNPKG

flickr-sdk

Version:

Almost certainly the best Flickr API client in the world for node and the browser

17 lines (16 loc) 453 B
/** * This file was auto-generated on 2023-10-24T15:44:49.847Z * flickr.photos.transform.rotate * Rotate a photo. * Permissions required: write */ export type FlickrPhotosTransformRotateParams = { /** * The id of the photo to rotate. */ photo_id: string; /** * The amount of degrees by which to rotate the photo (clockwise) from it's current orientation. Valid values are 90, 180 and 270. */ degrees: string; };