From ef1dcfc93a2a11417c31a96b21be4cb5f14161c1 Mon Sep 17 00:00:00 2001 From: Chris Barth Date: Thu, 20 Jan 2022 20:47:20 -0500 Subject: [PATCH] Export AuthenticateOptions type (#657) --- src/passport-saml/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/passport-saml/index.ts b/src/passport-saml/index.ts index 16729eac..841691fc 100644 --- a/src/passport-saml/index.ts +++ b/src/passport-saml/index.ts @@ -4,6 +4,7 @@ import { Strategy, AbstractStrategy } from "./strategy"; import { MultiSamlStrategy } from "./multiSamlStrategy"; import type { + AuthenticateOptions, Profile, SamlConfig, VerifiedCallback, @@ -18,6 +19,7 @@ export { MultiSamlStrategy, CacheItem, CacheProvider, + AuthenticateOptions, Profile, SamlConfig, VerifiedCallback,