Skip to content

Commit 2d2d101

Browse files
committed
Fix typescript defs
1 parent 4f9554d commit 2d2d101

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
```sh
4343
# v4 of sqlite is targted for nodejs 10 and on.
44-
$ npm install [email protected].1 --save
44+
$ npm install [email protected].4 --save
4545

4646
# If you need a legacy version for an older version of nodejs
4747
# install v3 instead, and look at the v3 branch readme for usage details

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sqlite",
3-
"version": "4.0.0-beta.1",
3+
"version": "4.0.0-beta.4",
44
"description": "SQLite client for Node.js applications with SQL-based migrations API written in Typescript",
55
"main": "build/index.js",
66
"types": "build/index.d.ts",

src/interfaces/Sqlite3.interfaces.ts

-6
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,3 @@ export namespace Sqlite3 {
6868
changes?: number
6969
}
7070
}
71-
72-
declare module 'sqlite3' {
73-
interface Database {
74-
loadExtension(path: string, callback?: (err) => void)
75-
}
76-
}

src/sqlite3/Sqlite3Database.ts

+3
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,9 @@ export class Sqlite3Database {
298298
*/
299299
loadExtension (path: string) {
300300
return new Promise((resolve, reject) => {
301+
// @todo if anyone can augment the typescript defs for loadExtension
302+
// feel free to open a PR!
303+
// @ts-ignore
301304
this.db.loadExtension(path, err => {
302305
if (err) {
303306
return reject(err)

0 commit comments

Comments
 (0)