ecomfe / echarts-wordcloud

Word Cloud extension based on Apache ECharts and wordcloud2.js
1.66k stars 708 forks source link

TypeScript error #151

Closed tiago138 closed 1 year ago

tiago138 commented 1 year ago

When using with typescript I get an error saying that type wordCloud is not assignable.

Ovilia commented 1 year ago

This is inevitable because the Apache ECharts doesn't know the type of extensions. So you have to use as any.

tiago138 commented 1 year ago

Thanks.