goog.provide('ol.raster.OperationType'); /** * Raster operation type. Supported values are `'pixel'` and `'image'`. * @enum {string} * @api */ ol.raster.OperationType = { PIXEL: 'pixel', IMAGE: 'image' };