@bitblit/epsilon
Version:
Tiny adapter to simplify building API gateway Lambda APIS
9 lines • 420 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BackgroundProcessHandling = 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.BackgroundProcessHandling = {
Queued: 'Queued',
Immediate: 'Immediate',
};
//# sourceMappingURL=background-process-handling.js.map