chatbot-template/lib/types.ts
2023-06-16 21:52:01 +04:00

18 lines
317 B
TypeScript

import { type Message } from 'ai-connector'
export interface Chat extends Record<string, any> {
id: string
title: string
createdAt: Date
userId: string
path: string
messages: Message[]
sharePath?: string
}
export type ServerActionResult<Result> = Promise<
| Result
| {
error: string
}
>