Skip to content

Commit 53978e0

Browse files
authored
Merge pull request #132 from LucioFranco/lucio/fix-sync-type-def
fix sync sync return ts type
2 parents ed3532d + e351fda commit 53978e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ declare namespace Libsql {
7272
source: string,
7373
): BindParameters extends unknown[] ? Statement<BindParameters> : Statement<[BindParameters]>;
7474
transaction<F extends VariableArgFunction>(fn: F): Transaction<F>;
75-
sync(): this;
75+
sync(): any;
7676
exec(source: string): this;
7777
pragma(source: string, options?: Database.PragmaOptions): unknown;
7878
function(name: string, cb: (...params: unknown[]) => unknown): this;

0 commit comments

Comments
 (0)