question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

TypeScript 3.7.5 error in the strict mode inside addQueryParams method

See original GitHub issue
private addQueryParams(query: object): string {
    const keys = Object.keys(query);
    return keys.length ? (
      '?' +
      keys.reduce((paramsArray, param) => [
        ...paramsArray,
        param + '=' + encodeURIComponent(query[param])
      ], []).join('&')
    ) : ''
  }

src/templates/client.mustache

(parameter) param: string No overload matches this call. Overload 1 of 3, ‘(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string’, gave the following error. Type ‘string[]’ is not assignable to type ‘string’. Overload 2 of 3, ‘(callbackfn: (previousValue: never[], currentValue: string, currentIndex: number, array: string[]) => never[], initialValue: never[]): never[]’, gave the following error. Type ‘string[]’ is not assignable to type ‘never[]’. Type ‘string’ is not assignable to type ‘never’.ts(2769) lib.es5.d.ts(1350, 24): The expected type comes from the return type of this signature. lib.es5.d.ts(1356, 27): The expected type comes from the return type of this signature.

I suggest following code:

  private addQueryParams(query: {[key:string]:string|number|boolean}): string {
    const keys = Object.keys(query);
    return keys.length === 0 ? ''
      : '?' + keys.map(key => encodeURIComponent(key) + '=' + encodeURIComponent(query[key])).join('&')
  }

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:7 (7 by maintainers)

github_iconTop GitHub Comments

1reaction
js2mecommented, Mar 2, 2020

@genaby as this is Api module which do requests to the server. I think needs to do more flexible solution for developers usage.
input type queries sometimes will have { optionalKey?: string } and it means that query type should be Record<string, any> or Record<string, string|string[]|number|number[]|boolean|undefined> 🤔

Also undefined values probably should be excluded from resulted query string

1reaction
genabycommented, Mar 2, 2020

Also I think that array destruction in the reduce is not very effective since each iteration will create new array each time.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Typescript error : Function declarations are not permitted in ...
I try to run a script but I have this error : Function declarations are not permitted in blocks in strict mode during...
Read more >
How strict is Typescript's strict mode? - DEV Community ‍ ‍
I started out writing code in Javascript without proper typing. When I switched to Typescript, I migrated my code without turning the strict...
Read more >
What Is Strict Mode In TypeScript, Why And When You Should ...
TypeScript strict mode is a bunch of TypeScript compiler ... of the rules forces you to always write a type of parameter in...
Read more >
Dynamic Routes - Next.js
Dynamic Routes are pages that allow you to add custom params to your URLs. Start creating Dynamic Routes and learn more here.
Read more >
typescript-strict-plugin - turn on strict mode on a per-file basis!
My team wanted to migrate our Typescript project (100k loc) to strict-mode, but after turning it on we got slapped with a whopping...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found