I inherited code, and I am trying to get it transpiled and eventually running. Within a components/TableAsset.tsx
I found the following lines
import { Table } from "antd";
const { Column, ColumnGroup } = Table;
class MyTable extends Table<Interfaces.ViewEntry> { }
This gives various typescript errors, which I do not understand. But what might have actually be intended with this piece of code? How would you write it in today's Typescript 3.x?