1e092b204b3a7999b1b0b1411a387e85ab8f11ed9b65a273578e539103db718498e1d2c996e341bb58a4fa319ee6bdc9124ea35d5b3d2a13e928aeeb1304c1 837 B

12345678910111213141516171819202122232425
  1. 'use strict'
  2. const ApplyEmptyCommitError = Symbol('ApplyEmptyCommitError')
  3. const GetBackupStashError = Symbol('GetBackupStashError')
  4. const GetStagedFilesError = Symbol('GetStagedFilesError')
  5. const GitError = Symbol('GitError')
  6. const GitRepoError = Symbol('GitRepoError')
  7. const HideUnstagedChangesError = Symbol('HideUnstagedChangesError')
  8. const RestoreMergeStatusError = Symbol('RestoreMergeStatusError')
  9. const RestoreOriginalStateError = Symbol('RestoreOriginalStateError')
  10. const RestoreUnstagedChangesError = Symbol('RestoreUnstagedChangesError')
  11. const TaskError = Symbol('TaskError')
  12. module.exports = {
  13. ApplyEmptyCommitError,
  14. GetBackupStashError,
  15. GetStagedFilesError,
  16. GitError,
  17. GitRepoError,
  18. HideUnstagedChangesError,
  19. RestoreMergeStatusError,
  20. RestoreOriginalStateError,
  21. RestoreUnstagedChangesError,
  22. TaskError,
  23. }