@mercury-labs/auth
Version:
Mercury framework auth library. It supports local auth, jwt with both bearer token and cookie, basic auth.
10 lines • 506 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.AuthTransferTokenMethod = void 0;
var AuthTransferTokenMethod;
(function (AuthTransferTokenMethod) {
AuthTransferTokenMethod["BOTH"] = "both";
AuthTransferTokenMethod["COOKIE_ONLY"] = "cookie";
AuthTransferTokenMethod["BEARER_ONLY"] = "bearer";
})(AuthTransferTokenMethod = exports.AuthTransferTokenMethod || (exports.AuthTransferTokenMethod = {}));
//# sourceMappingURL=auth-transfer-token-method.enum.js.map
;