idaho/feathers-async-boot

View on GitHub
src/errorhandling.ts

Summary

Maintainability
A
0 mins
Test Coverage
enum BootErrorHandling {
  ABORT = 'abort',    // rejects the promise - start process
  WARN = 'warn',      // resolves start process but will return the error messages if there was a rejection
  IGNORE = 'ingore'   // will always resolves the start process and will return only true
}

export = BootErrorHandling;