mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 17:53:21 +08:00
9 lines
135 B
TypeScript
9 lines
135 B
TypeScript
import { Id } from "./common";
|
|
|
|
export interface Chat {
|
|
id: string;
|
|
connectionId: Id;
|
|
databaseName: string;
|
|
assistantId: Id;
|
|
}
|