From dc9b8a1bdfbd1eba443e1a652e1b75e84bacfd38 Mon Sep 17 00:00:00 2001 From: David Lee Date: Wed, 6 Nov 2024 12:11:37 -0800 Subject: [PATCH] Fix spacing --- src/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 2d520ce..3eaa73a 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -458,7 +458,7 @@ declare interface SQLiteAPI { */ column_type(stmt: number, i: number): number; - /** + /** * Register a commit hook * * @see https://www.sqlite.org/c3ref/commit_hook.html @@ -467,7 +467,7 @@ declare interface SQLiteAPI { * @param callback If a non-zero value is returned, commit is converted into * a rollback; disables callback when null */ - commit_hook( + commit_hook( db: number, callback: (() => number) | null): void;