mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-28 21:12:13 +00:00
8 lines
254 B
TypeScript
8 lines
254 B
TypeScript
import { NextApiRequest, NextPage } from 'next/types';
|
|
import { Session } from 'next-auth';
|
|
|
|
export type Message = { role: 'human' | 'ai'; context: string; createdAt?: Date };
|
|
|
|
export type AppNextApiRequest = NextApiRequest & {
|
|
session: Session;
|
|
}; |