Open davidl opened 4 years ago
In the file clustering.js (line 303), there is a call to result.next() but the type Interface for Result in ecStat.d.ts (line 21) does not provide a type definition for the next function. This causes a compilation error when using the example code in clustering_animation.html (line 64).
clustering.js
result.next()
Result
next
clustering_animation.html
Please add a type definition for the next() function to the Result interface to avoid the following error:
next()
error TS2339: Property 'next' does not exist on type 'Result'.
In the file
clustering.js
(line 303), there is a call toresult.next()
but the type Interface forResult
in ecStat.d.ts (line 21) does not provide a type definition for thenext
function. This causes a compilation error when using the example code inclustering_animation.html
(line 64).Please add a type definition for the
next()
function to the Result interface to avoid the following error:error TS2339: Property 'next' does not exist on type 'Result'.