mbeauv/urbanoe-communications

View on GitHub
src/media_gallery/models/ImageScratchImageVariant.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow

/**
 * Information on an image variant contained in the scratch.
 */
export type ImageScratchImageVariant = {

  /** Name of the type of the variant */
  +name: string,

  /** URL of the image */
  +url: string,

}