ts-aspnetcore-apigateway-client
Version:
TypeScript Client for Api Gateway built using AspNetCore.ApiGateway package.
20 lines (19 loc) • 675 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Operation = exports.JsonPatchOperation = void 0;
var JsonPatchOperation = /** @class */ (function () {
function JsonPatchOperation() {
}
return JsonPatchOperation;
}());
exports.JsonPatchOperation = JsonPatchOperation;
var Operation;
(function (Operation) {
Operation["Add"] = "Add";
Operation["Remove"] = "Remove";
Operation["Replace"] = "Replace";
Operation["Move"] = "Move";
Operation["Copy"] = "Copy";
Operation["Test"] = "Test";
Operation["Invalid"] = "Invalid";
})(Operation = exports.Operation || (exports.Operation = {}));