Merge pull request #19813 from matrumz/master

[better-sqlite3] Added fileMustExist to DatabaseOptions
This commit is contained in:
Benjamin Lichtman
2017-09-22 16:30:43 -07:00
committed by GitHub
+2
View File
@@ -1,6 +1,7 @@
// Type definitions for better-sqlite3 3.1
// Project: http://github.com/JoshuaWise/better-sqlite3
// Definitions by: Ben Davies <https://github.com/Morfent>
// Mathew Rumsey <https://github.com/matrumz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
@@ -42,6 +43,7 @@ declare class Transaction {
interface DatabaseOptions {
memory?: boolean;
readonly?: boolean;
fileMustExist?: boolean;
}
interface RegistrationOptions {