UNPKG

@accounts/server

Version:

Fullstack authentication and accounts-management

9 lines (7 loc) 285 B
import { type AuthenticationService, type User } from '@accounts/types'; export interface AuthenticationServices<CustomUser extends User = User> { [key: string]: | (new (args: any) => AuthenticationService<CustomUser>) | AuthenticationService<CustomUser> | undefined; }