You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to install this ilp client using npm and then executed it in my Node.js project, but got an error: node_modules/ilp/src/extensions/express.ts:44:48 - error TS2345: Argument of type 'string | ParsedQs | string[] | ParsedQs[]' is not assignable to parameter of type 'string'. Type 'ParsedQs' is not assignable to type 'string'.
It looks like the variable reference in express.ts can be some object types rather than string type.
Expected Behaviour
Execute successfully and correctly.
Environment
Node.js: v10.16.3
ilp: v14.1.0
Nest.js (the framework I use): v7.4.0
Windows 10, Visual Studio Code
The text was updated successfully, but these errors were encountered:
Description
I tried to install this ilp client using npm and then executed it in my Node.js project, but got an error:
node_modules/ilp/src/extensions/express.ts:44:48 - error TS2345: Argument of type 'string | ParsedQs | string[] | ParsedQs[]' is not assignable to parameter of type 'string'. Type 'ParsedQs' is not assignable to type 'string'.
It looks like the variable
reference
inexpress.ts
can be some object types rather than string type.Expected Behaviour
Execute successfully and correctly.
Environment
The text was updated successfully, but these errors were encountered: