@types/sqlite3
Advanced tools
Comparing version 3.1.2 to 3.1.3
@@ -5,2 +5,3 @@ // Type definitions for sqlite3 3.1 | ||
// Sumant Manne <https://github.com/dpyro> | ||
// Behind The Math <https://github.com/BehindTheMath> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -91,2 +92,13 @@ | ||
export function verbose(): void; | ||
export function verbose(): sqlite3; | ||
export interface sqlite3 { | ||
OPEN_READONLY: number; | ||
OPEN_READWRITE: number; | ||
OPEN_CREATE: number; | ||
cached: typeof cached; | ||
RunResult: RunResult; | ||
Statement: typeof Statement; | ||
Database: typeof Database; | ||
verbose(): this; | ||
} |
{ | ||
"name": "@types/sqlite3", | ||
"version": "3.1.2", | ||
"version": "3.1.3", | ||
"description": "TypeScript definitions for sqlite3", | ||
@@ -16,2 +16,7 @@ "license": "MIT", | ||
"githubUsername": "dpyro" | ||
}, | ||
{ | ||
"name": "Behind The Math", | ||
"url": "https://github.com/BehindTheMath", | ||
"githubUsername": "BehindTheMath" | ||
} | ||
@@ -29,4 +34,4 @@ ], | ||
}, | ||
"typesPublisherContentHash": "f16319d10904223ffffe3baabfc7cf1b66953e50ade7b6a1de11702a1b3200b0", | ||
"typesPublisherContentHash": "c9edd5eace02e326510d85cd16b0dc8efc83de9e88171fc67ae27e22ba83cf13", | ||
"typeScriptVersion": "2.0" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Tue, 27 Mar 2018 18:51:52 GMT | ||
* Last updated: Tue, 27 Mar 2018 21:15:05 GMT | ||
* Dependencies: events, node | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Nick Malaguti <https://github.com/nmalaguti>, Sumant Manne <https://github.com/dpyro>. | ||
These definitions were written by Nick Malaguti <https://github.com/nmalaguti>, Sumant Manne <https://github.com/dpyro>, Behind The Math <https://github.com/BehindTheMath>. |
Sorry, the diff of this file is not supported yet
7319
77