UNPKG

@only-chat/types

Version:
11 lines (10 loc) 284 B
export interface AuthenticationInfo {} export interface UserStore { /** * Verifies provided user credentials * * @param authInfo User credentials * @returns User identifier */ authenticate(authInfo: AuthenticationInfo): Promise<string | undefined> }