We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70beacc commit add22e6Copy full SHA for add22e6
index.d.ts
@@ -0,0 +1,5 @@
1
+import { Knex } from "knex";
2
+
3
+declare class Client_PhotoStructureSQLite extends Knex.Client {}
4
5
+export = Client_PhotoStructureSQLite;
package.json
@@ -3,12 +3,17 @@
"version": "0.1.0",
"description": "Knex.js dialect for @photostructure/sqlite",
"main": "./index.js",
6
+ "types": "./index.d.ts",
7
"exports": {
- ".": "./index.js",
8
+ ".": {
9
10
+ "default": "./index.js"
11
+ },
12
"./package.json": "./package.json"
13
},
14
"files": [
15
"index.js",
16
+ "index.d.ts",
17
"LICENSE",
18
"README.md"
19
],
0 commit comments