@bitblit/epsilon
Version:
Tiny adapter to simplify building API gateway Lambda APIS
10 lines • 504 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NullReturnedObjectHandling = 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.NullReturnedObjectHandling = {
Error: 'Error',
ConvertToEmptyString: 'ConvertToEmptyString',
Return404NotFoundResponse: 'Return404NotFoundResponse',
};
//# sourceMappingURL=null-returned-object-handling.js.map