remove unused DB methods (for now)

This commit is contained in:
2025-06-05 20:00:51 -06:00
parent ea227fe0b8
commit 340bceee31
3 changed files with 6 additions and 44 deletions

View File

@@ -12,6 +12,4 @@ export interface DatabaseService {
sql: string,
params?: unknown[],
): Promise<{ changes: number; lastId?: number }>;
getOneRow(sql: string, params?: unknown[]): Promise<unknown[] | undefined>;
getAll(sql: string, params?: unknown[]): Promise<unknown[][]>;
}