We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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'.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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'.
The text was updated successfully, but these errors were encountered: