@senacor/azure-function-middleware
Version:
Middleware for azure functions to handle authentication, authorization, error handling and logging
11 lines (10 loc) • 706 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.jwtAuthorization = exports.headerAuthentication = void 0;
var headerAuthentication_1 = require("./headerAuthentication");
Object.defineProperty(exports, "headerAuthentication", { enumerable: true, get: function () { return __importDefault(headerAuthentication_1).default; } });
var jwtAuthorization_1 = require("./jwtAuthorization");
Object.defineProperty(exports, "jwtAuthorization", { enumerable: true, get: function () { return __importDefault(jwtAuthorization_1).default; } });