aau-auth-kit-ui
Version:
Plug & play shadcn/ui components for aau-auth-kit with Next.js integration
16 lines (14 loc) • 420 B
text/typescript
export const authViewPaths = {
callback: "callback",
forgotPassword: "forgot-password",
resetPassword: "reset-password",
settings: "settings",
signIn: "sign-in",
signOut: "sign-out",
signUp: "sign-up",
twoFactor: "two-factor",
signInPhone: "sign-in-phone",
sendOtp: "send-otp",
} as const;
export type AuthViewPaths = typeof authViewPaths;
export type AuthView = keyof AuthViewPaths;