Skip to content

Commit 1119d95

Browse files
committed
feat: add conversation type
1 parent 928b95e commit 1119d95

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/typings/IConversation.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
export type IConversation = {
2+
id: string;
3+
conversationID: string;
4+
input: string;
5+
output: string;
6+
createdAt: number;
7+
};

src/typings/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
export * from "./IUser";
22
export * from "./JsonResp";
33
export * from "./ReqParams";
4+
export * from "./IConversation";

0 commit comments

Comments
 (0)