Skip to content

Commit 634cd99

Browse files
mmkalmmkal
mmkal
authored and
mmkal
committed
fix: add types to package.json
1 parent 38aa0ac commit 634cd99

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"files": [
77
"dist/src"
88
],
9+
"types": "dist/src/index",
910
"scripts": {
1011
"precompile": "ts-node scripts/generate-client",
1112
"compile": "tsc --project .",

scripts/generate-client.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const run = async (task: () => Promise<any>) => {
1313
}
1414
};
1515

16-
const typeFor = (arg: Argument) => {
16+
const typeFor = (arg: Argument): string => {
1717
switch (arg.type) {
1818
case "key":
1919
case "pattern":
@@ -42,7 +42,7 @@ const makeArrayType = (type: string) =>
4242
type.match(/\W/) ? `Array<${type}>` : `${type}[]`;
4343

4444
run(() => {
45-
const referenceClient = createClient();
45+
const referenceClient: { [methodName: string]: any } = createClient();
4646
const redisDoc = `scripts/redis-doc`;
4747
const commandsJson = readFileSync(`${redisDoc}/commands.json`, "utf8");
4848
const commandCollection: CommandCollection = JSON.parse(commandsJson);
@@ -122,7 +122,7 @@ run(() => {
122122
` */`,
123123
`${methodName}(${argList}) {`,
124124
` return new Promise((resolve, reject) => {`,
125-
` (this.redis as any).${methodName.toLowerCase()}.apply([...arguments, (err, data) => err ? reject(err) : resolve(data)]);`,
125+
` (this.redis as any).${methodName.toLowerCase()}.apply([...arguments, (err: any, data: any) => err ? reject(err) : resolve(data)]);`,
126126
` });`,
127127
`}`,
128128
].map(line => ` ${line}`).join(EOL);

tsconfig.json

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"forceConsistentCasingInFileNames": true,
88
"noImplicitReturns": true,
99
"noImplicitThis": true,
10+
"noImplicitAny": true,
1011
"noUnusedLocals": true,
1112
"noUnusedParameters": false,
1213
"noFallthroughCasesInSwitch": true,

0 commit comments

Comments
 (0)