UNPKG

tlojs

Version:

The Last One - The last npm package you'll need to install

8 lines (7 loc) 207 B
import { TableCell } from "../cell"; import { TablePlugin } from "../table-plugin"; export class Count implements TablePlugin<number> { execute(cells: TableCell<unknown>[]) { return cells.length } }