diff --git a/app/search/search.type.ts b/app/search/search.type.ts index 1964230..ca070aa 100644 --- a/app/search/search.type.ts +++ b/app/search/search.type.ts @@ -1,5 +1,9 @@ export type AllOpenChat = Chat[]; +export type AllOpenChatJSON = { + chats: AllOpenChat; +}; + type Chat = { id: string; name: string;