UNPKG

@accounts/types

Version:
12 lines (10 loc) 306 B
import { type ConnectionInformations } from './connection-informations'; import { type User } from './user'; export interface IContext<IUser extends User = User> { authToken?: string; user?: IUser; userId?: string; userAgent: string | null; ip: string | null; infos: ConnectionInformations; }