auth-backend: add missing type exports

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2022-04-08 12:58:03 +02:00
parent 9990055aa3
commit 3c16349463
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
*/
export * from './service/router';
export type { TokenIssuer } from './identity';
export type { TokenIssuer, TokenParams } from './identity';
export * from './providers';
// flow package provides 2 functions
@@ -37,6 +37,7 @@ export { factories as defaultAuthProviderFactories } from './factories';
// Export the minimal interface required for implementing a
// custom Authorization Handler
export type {
AuthProviderConfig,
AuthProviderRouteHandlers,
AuthProviderFactoryOptions,
AuthProviderFactory,