UNPKG
better-auth-dashboard
Version:
beta (0.0.2-beta.0)
latest (0.0.4)
0.0.4
0.0.2
0.0.2-beta.0
A better-Auth powered admin dashboard.
better-auth-dashboard
/
src
/
plugin
/
client.ts
9 lines
(7 loc)
•
295 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
BetterAuthClientPlugin
}
from
"better-auth/client"
;
import
type
{
DashboardPlugin
}
from
"./server"
;
export
const
dashboardClientPlugin
= (
) => ({
id
:
"better-auth-dashboard"
,
$InferServerPlugin
: {}
as
ReturnType
<
DashboardPlugin
>, })
satisfies
BetterAuthClientPlugin
;