downthemall/uikit/lib/table.ts
2019-08-20 16:41:37 +02:00

12 lines
214 B
TypeScript

import { TableEvents } from "./tableevents";
import { CellTypes } from "./constants";
export class VirtualTable extends TableEvents {
init() {
this.resized();
}
}
Object.assign(VirtualTable, CellTypes);