UNPKG

@studyportals/sp-r2d2

Version:

A framework that contains various components used when developing projects that will be deployed via AWS λ.

11 lines 526 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.UnauthorizedResponse = void 0; const http_response_class_1 = require("./http-response.class"); class UnauthorizedResponse extends http_response_class_1.HttpResponse { constructor(body = {}, headers = {}, includeCorsHeaders = true, corsHeaders = null) { super(401, body, headers, includeCorsHeaders, corsHeaders); } } exports.UnauthorizedResponse = UnauthorizedResponse; //# sourceMappingURL=unauthorized-response.class.js.map