9 lines
211 B
JavaScript
9 lines
211 B
JavaScript
var InspectionDecision = Object.freeze({
|
|
DoNothing: 'doNothing',
|
|
EndOperation: 'endOperation',
|
|
Retry: 'retry',
|
|
Reconnect: 'reconnect',
|
|
Subscribed: 'subscribed'
|
|
});
|
|
|
|
module.exports = InspectionDecision; |