UNPKG

@accounts/server

Version:

Fullstack authentication and accounts-management

5 lines (4 loc) 272 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; }