mbeauv/urbanoe-communications

View on GitHub
src/urbanoe/models/IssueType.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow

/**
 * List of issue types supported.
 */
export type IssueType =
  | 'pothole'
  | 'graffiti'
  | 'broken_light'
  | 'full_garbage_can'
  | 'litter'
  | 'other'
  | 'found_shopping_cart'
  | 'lost_pet'
  | 'found_pet';