From 022ce8244d5c0c9cc1fcf9469100b3e2e08813b7 Mon Sep 17 00:00:00 2001 From: Felix Schoeler Date: Tue, 2 Jul 2019 20:57:55 +0200 Subject: [PATCH] Fixed module name inconsistency --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 2e626cc..99b8800 100644 --- a/index.d.ts +++ b/index.d.ts @@ -2,7 +2,7 @@ // Project: node-firebird // Definitions by: Marco Warm -declare module 'node-firebird' { +declare module 'node-firebird-dev' { type DatabaseCallback = (err: any, db: Database) => void; type TransactionCallback = (err: Options, transaction: Transaction) => void;