refactor(core): share sqlite boundary types

This commit is contained in:
tommy0103
2026-07-12 00:44:06 +08:00
parent 3a6e3a00a7
commit c4c458fa8f
8 changed files with 47 additions and 33 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ const TEXT_LIMIT = 10000;
type JsonRecord = Record<string, any>;
type JsonValue = any;
interface ClaudeJsonlFile {
export interface ClaudeJsonlFile {
path: string;
sessionId: string;
project: string;
@@ -27,7 +27,7 @@ interface ClaudeJsonlFile {
source?: 'claude';
}
interface CodexJsonlFile {
export interface CodexJsonlFile {
path: string;
source: 'codex';
}