feat: Add stack trace utility and enhance logging across various modules

This commit is contained in:
2024-12-31 15:14:30 +08:00
parent 5131515770
commit 730b673954
15 changed files with 311 additions and 54 deletions

View File

@@ -12,6 +12,13 @@ export type QueryParameter =
export type QueryParameterSet =
| Record<string, QueryParameter>
| Array<QueryParameter>;
export type SqliteMaster = {
type: string;
name: string;
tbl_name: string;
rootpage: number;
sql: string;
};
export interface Db {
close(force?: boolean): void;