import Filter from './Filter'; import FilterType from './FilterType'; /** * @export * @class RotateFilter */ export declare class RotateFilter extends Filter { /** * Discriminator property for Filter * @type {string} * @memberof RotateFilter */ readonly type: FilterType; /** * Rotation of the video in degrees. A positive value will rotate the video clockwise and a negative one counter clockwise. (required) * @type {number} * @memberof RotateFilter */ rotation?: number; constructor(obj?: Partial); } export default RotateFilter;