Merge pull request #19145 from Morfent/better-sqlite3

[better-sqlite3] Fix types for ran query results and custom operators
This commit is contained in:
Bowden Kelly
2017-08-22 11:21:37 -07:00
committed by GitHub

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 {