image-js
Version:
Image processing and manipulation in JavaScript
16 lines (14 loc) • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.RGB = exports.HSV = exports.HSL = exports.GREY = exports.CMYK = void 0;
/**
* Color model of an image
* @typedef {('GREY'|'RGB'|'HSL'|'HSV'|'CMYK')} ColorModel
*/
const GREY = exports.GREY = 'GREY';
const RGB = exports.RGB = 'RGB';
const HSL = exports.HSL = 'HSL';
const HSV = exports.HSV = 'HSV';
const CMYK = exports.CMYK = 'CMYK';