Skip to content

Commit

Permalink
fix: export ZitadelAuth interface
Browse files Browse the repository at this point in the history
  • Loading branch information
peintnermax committed Apr 29, 2024
1 parent 7309fa9 commit e32301a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { createZitadelAuth, ZitadelConfig } from "./zitadelAuth";
export { createZitadelAuth, ZitadelConfig, ZitadelAuth } from "./zitadelAuth";
2 changes: 1 addition & 1 deletion lib/src/zitadelAuth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type ZitadelConfig = Partial<UserManagerSettings> & {
project_resource_id?: string;
};

interface ZitadelAuth {
export interface ZitadelAuth {
authorize(): Promise<void>;
signout(): Promise<void>;
userManager: UserManager;
Expand Down

0 comments on commit e32301a

Please sign in to comment.