UNPKG

tlojs

Version:

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

10 lines (9 loc) 312 B
import { TableCell } from "./cell"; import '../array/linq'; import { TablePlugin } from "./table-plugin"; import { Type } from "../types/type"; export declare class TableQueryResults { cells: TableCell<unknown>[]; constructor(cells: TableCell<unknown>[]); exec<T>(plugin: Type<TablePlugin<T>>): T; }