We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f683e48 commit a9128dcCopy full SHA for a9128dc
index.d.ts
@@ -0,0 +1,4 @@
1
+
2
+export function parse(source: string): string[];
3
+export function parse<T>(source: string, transform: (value: string) => T): T[];
4
package.json
@@ -16,6 +16,7 @@
16
"scripts": {
17
"test": "standard && tape test.js"
18
},
19
+ "types": "index.d.ts",
20
"keywords": [
21
"postgres",
22
"array",
@@ -29,6 +30,7 @@
29
30
31
"files": [
32
"index.js",
33
+ "index.d.ts",
34
"readme.md"
35
]
36
}
0 commit comments