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)
17 lines (16 loc) • 362 B
TypeScript
/** @format */
/**
* Enum representing the sides that can be trimmed.
*/
export declare enum TrimSide {
/** Represents the top side. */
top = 1,
/** Represents the bottom side. */
bottom = 2,
/** Represents the left side. */
left = 4,
/** Represents the right side. */
right = 8,
/** Represents all sides. */
all = 15
}