UNPKG

@nucypher/taco

Version:

### [`nucypher/taco-web`](../../README.md)

19 lines 983 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.JWTCondition = exports.JWTConditionType = exports.jwtConditionSchema = exports.JWT_PARAM_DEFAULT = void 0; const condition_1 = require("../condition"); const jwt_1 = require("../schemas/jwt"); var jwt_2 = require("../schemas/jwt"); Object.defineProperty(exports, "JWT_PARAM_DEFAULT", { enumerable: true, get: function () { return jwt_2.JWT_PARAM_DEFAULT; } }); Object.defineProperty(exports, "jwtConditionSchema", { enumerable: true, get: function () { return jwt_2.jwtConditionSchema; } }); Object.defineProperty(exports, "JWTConditionType", { enumerable: true, get: function () { return jwt_2.JWTConditionType; } }); class JWTCondition extends condition_1.Condition { constructor(value) { super(jwt_1.jwtConditionSchema, { conditionType: jwt_1.JWTConditionType, ...value, }); } } exports.JWTCondition = JWTCondition; //# sourceMappingURL=jwt.js.map