@bitblit/epsilon
Version:
Tiny adapter to simplify building API gateway Lambda APIS
12 lines • 637 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BackgroundExecutionEventType = void 0;
// NOTE: This is a psuedo-enum to fix some issues with Typescript enums. See: https://exploringjs.com/tackling-ts/ch_enum-alternatives.html for details
exports.BackgroundExecutionEventType = {
ProcessStarting: 'ProcessStarting',
DataValidationError: 'DataValidationError',
ExecutionSuccessfullyComplete: 'ExecutionSuccessfullyComplete',
ExecutionFailedError: 'ExecutionRuntimeError',
NoMatchProcessorName: 'NoMatchProcessorName',
};
//# sourceMappingURL=background-execution-event-type.js.map