svelte-simple-datatables
svelte-simple-datatables copied to clipboard
Type errors when using svelte-simple-datatables with Typescript
Currently when using svelte-simple-datatables
in combination with Typescript, every row.<property>
displays following error in the terminal when running svelte-check
:
Error: Object is of type 'unknown'. (ts)
<td>
<ReportStatus reportStatus="{row.status}" />
</td>
It would be great to have type definitions or at least these errors silenced, thank you!