image-in-browser
Version:
Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)
19 lines (18 loc) • 339 B
TypeScript
/** @format */
/**
* Enum representing the direction to flip an image.
*/
export declare enum FlipDirection {
/**
* Flip the image horizontally.
*/
horizontal = 0,
/**
* Flip the image vertically.
*/
vertical = 1,
/**
* Flip the image both horizontally and vertically.
*/
both = 2
}