The JS Buy SDK is deprecated as of January, 2025. For more information, please see the README.

Source: image-resource.js

import Resource from './resource';
import imageHelpers from './image-helpers';

/**
 * The JS Buy SDK image resource
 * @class
 */
class ImageResource extends Resource {
  get helpers() {
    return imageHelpers;
  }
}

export default ImageResource;