search-client
Version:
Javascript library for executing searches in the Haive search-index via the SearchManager REST interface.
19 lines • 712 B
JavaScript
/**
* These are the triggers that define when and when not to trigger an authentication lookup.
*/
var AuthenticationTriggers = /** @class */ (function () {
/**
* Creates an AuthenticationTrigger object for you.
* @param triggers - The trigger defined here will override the default AuthenticationTrigger.
*/
function AuthenticationTriggers(triggers) {
if (triggers === void 0) { triggers = {}; }
this.expiryOverlap =
typeof triggers.expiryOverlap !== "undefined"
? triggers.expiryOverlap
: 60;
}
return AuthenticationTriggers;
}());
export { AuthenticationTriggers };
//# sourceMappingURL=AuthenticationTriggers.js.map