UNPKG

@kyleroberts69/core

Version:

Core library for the Chatbot project

11 lines (10 loc) 212 B
export interface User { email?: string | null; image?: string | null; name?: string | null; } export interface Session { user?: User | null; customAccessToken?: string; expires: string; }