Thomas Rayden
Thomas Rayden
I am using Typescript v4.0.2 and I am getting a type error when trying to use third party middleware that uses the NextFunction type from @types/express. Culprit code: ```typescript //...
Fixes: #24 I found that the type conflict comes from the err parameter type. @types/express: `(err?: any): void` compose-middleware: `(err?: Error | null): void` This PR changes the Next err...
#### Support plan * *is this issue currently blocking your project?* (yes/no): no * *is this issue affecting a production system?* (yes/no): no #### Context * *node version*: v12.16.3 *...
When using node-cache in a TypeScript/Node.js project, I encounter the following error when calling .get() or .del() on a key that is missing or expired: ```json { "type": "TypeError", "message":...