/**
 * Represents canvas scaling image quality.
 */
export enum ImageQuality {
  High = 'high',
  Medium = 'medium',
  Low = 'low',
}
