mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
7 lines
378 B
TypeScript
7 lines
378 B
TypeScript
export const cacheKeys = {
|
|
activeSearchSpace: {
|
|
chats : (searchSpaceId: string) => ["active-search-space", "chats", searchSpaceId] as const,
|
|
activeChat : (chatId: string) => ["active-search-space", "active-chat", chatId] as const,
|
|
deleteChat : ( searchSpaceId: string, chatId: string) => ["active-search-space", "chats", searchSpaceId, "delete", chatId] as const,
|
|
},
|
|
};
|