UNPKG
@knath2000/codebase-indexing-mcp
Version:
latest (1.0.0)
1.0.0
MCP server for codebase indexing with Voyage AI embeddings and Qdrant vector storage
@knath2000/codebase-indexing-mcp
/
dist
/
services
/
session-store.d.ts
9 lines
(8 loc)
•
262 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
declare
class
SessionStore
{
private
db;
constructor
(dbPath?:
string
);
upsert
(
sessionId
:
string
,
allocId
:
string
, ttlMs?: number):
void
;
lookup
(
sessionId
:
string
):
string
|
null
;
delete
(
sessionId
:
string
):
void
;
cleanup
():
void
; }