Skip to content

Commit

Permalink
Merge pull request #9 from zitadel/fix-export
Browse files Browse the repository at this point in the history
fix: export ZitadelAuth interface
  • Loading branch information
eliobischof authored Apr 29, 2024
2 parents 7309fa9 + e32301a commit f5683af
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 f5683af

Please sign in to comment.