UNPKG

@kyleroberts69/core

Version:

Core library for the Chatbot project

7 lines (6 loc) 253 B
import { NextApiRequest, NextApiResponse } from 'next'; import { Session } from '../types/auth'; export interface ServerAuth { session: (req: NextApiRequest, res: NextApiResponse, authOptions: any) => Promise<Session | null>; apiHandler: any; }