@better-auth-ui/core
Version:
Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.
27 lines (26 loc) • 614 B
TypeScript
/**
* Base path configuration for authentication, settings, organization, and admin routes.
*/
export type BasePaths = {
/**
* Base path for application administration routes
* @default "/admin"
*/
admin: string;
/**
* Base path for authentication routes
* @default "/auth"
*/
auth: string;
/**
* Base path for settings routes
* @default "/settings"
*/
settings: string;
/**
* Base path for organization management routes
* @default "/organization"
*/
organization: string;
};
export declare const basePaths: BasePaths;