Interface IMediaTransformation

interface IMediaTransformation {
    flip?: {
        horizontal?: boolean;
        vertical?: boolean;
    };
    height: number;
    rotation?: number;
    width: number;
}

Properties

flip?: {
    horizontal?: boolean;
    vertical?: boolean;
}

Type declaration

  • Optional Readonly horizontal?: boolean
  • Optional Readonly vertical?: boolean
height: number
rotation?: number
width: number

Generated using TypeDoc