diff --git a/src/index.ts b/src/index.ts index 1ddf44c..e84835e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,4 +1,14 @@ export { useAuth } from "./hook"; export { AuthKitProvider } from "./provider"; -export { getClaims } from "@workos-inc/authkit-js"; +export { + getClaims, + AuthKitError, + LoginRequiredError, +} from "@workos-inc/authkit-js"; +export type { + User, + AuthenticationResponse, + JWTPayload, + OnRefreshResponse, +} from "@workos-inc/authkit-js"; export type { Impersonator } from "./state";