Skip to content

Commit 865a235

Browse files
committed
fix: export all helpers/types/methods
1 parent d3352d3 commit 865a235

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

src/index.ts

+14-1
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,17 @@ const plugin: ExpressPlugin = { name, buildAuthenticatedRouter, buildRouter };
109109

110110
export default plugin;
111111

112-
export type { AuthenticationOptions, FormidableOptions } from "./types.js";
112+
export type {
113+
AuthenticationOptions,
114+
FormidableOptions,
115+
AuthenticationMaxRetriesOptions,
116+
AuthenticationContext,
117+
} from "./types.js";
118+
export * from "./buildRouter.js";
119+
export * from "./buildAuthenticatedRouter.js";
120+
export * from "./convertRoutes.js";
121+
export * from "./errors.js";
122+
export * from "./logger.js";
123+
export * from "./authentication/login.handler.js";
124+
export * from "./authentication/logout.handler.js";
125+
export * from "./authentication/protected-routes.handler.js";

0 commit comments

Comments
 (0)