mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-01-30 06:22:04 +00:00
11 lines
339 B
TypeScript
11 lines
339 B
TypeScript
import { DatabaseAdapter } from '../database/database-adapter';
|
|
export declare class SQLiteStorageService {
|
|
private adapter;
|
|
private dbPath;
|
|
constructor(dbPath?: string);
|
|
private initSync;
|
|
private initializeSchema;
|
|
get db(): DatabaseAdapter;
|
|
close(): void;
|
|
}
|
|
//# sourceMappingURL=sqlite-storage-service.d.ts.map
|