[better-sqlite3] Fix types for ran query results and custom operators

This commit is contained in:
Ben Davies
2017-08-19 00:22:38 -03:00
parent df4d11409c
commit f7749197a5
+2 -1
View File
@@ -9,7 +9,7 @@ import * as Integer from 'integer';
interface RunResult {
changes: number;
lastInsertRowID: number;
lastInsertROWID: Integer.IntLike;
}
declare class Statement {
@@ -48,6 +48,7 @@ interface RegistrationOptions {
name?: string;
varargs?: boolean;
deterministic?: boolean;
safeIntegers?: boolean;
}
interface Database {