Argument of type 'null' is not assignable to parameter of type 'TableContinuationToken'

421 Views Asked by At

According to the docs link, when querying a table using queryEntities, the continuationToken can be passed in as null or undefined (Please use 'null' or 'undefined' if this is the first operation.) However, that does not compile: Argument of type 'null' is not assignable to parameter of type 'TableContinuationToken'.

Getting the error while running the server. enter image description here

And this error is also caught by eslint. enter image description here

1

There are 1 best solutions below

0
On

I got 3 workaround solutions to get it resolved.

  1. use of @ts-ignore enter image description here

  2. use <any> in front of null. enter image description here

  3. use null as any. This also recommended by Sonar Linting enter image description here

Both solutions are working and I am able to start the server. enter image description here