RouteInjector/route-injector

View on GitHub
lib/utils/OperationType.js

Summary

Maintainability
A
0 mins
Test Coverage
"use strict";
/**
 * Created by gerard on 13/04/16.
 */
/// <reference path='../../typings/index.d.ts'/>
var OperationType = /** @class */ (function () {
    function OperationType() {
    }
    OperationType.GET = "get";
    OperationType.POST = "post";
    OperationType.PUT = "put";
    OperationType.DELETE = "delete";
    OperationType.SEARCH = "search";
    OperationType.VALIDATE = "validate";
    return OperationType;
}());
module.exports = OperationType;
//# sourceMappingURL=OperationType.js.map