@better-auth-ui/core
Version:
Authentication components and data utilities for [Better Auth](https://better-auth.com), available for React and Solid.
15 lines (13 loc) • 418 B
text/typescript
/** A finite static path registered with the administration shell. */
export type AdminRouteEntry = {
id: string
path: string
}
/** Resolve an exact admin path without interpreting nested or dynamic values. */
export function resolveAdminPath(
path: string | undefined,
entries: readonly AdminRouteEntry[]
) {
if (path === undefined) return undefined
return entries.find((entry) => entry.path === path)
}