Application Android et IOS pour l'amicale des élèves
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProxiwashConstants.js 454B

1234567891011121314151617181920
  1. export default {
  2. machineStates: {
  3. "AVAILABLE": 0,
  4. "RUNNING": 1,
  5. "RUNNING_NOT_STARTED": 2,
  6. "FINISHED": 3,
  7. "UNAVAILABLE": 4,
  8. "ERROR": 5,
  9. "UNKNOWN": 6,
  10. },
  11. stateIcons: {
  12. 0: 'radiobox-blank',
  13. 1: 'progress-check',
  14. 2: 'alert-circle-outline',
  15. 3: 'check-circle',
  16. 4: 'alert-octagram-outline',
  17. 5: 'alert',
  18. 6: 'help-circle-outline',
  19. }
  20. };