UNPKG

gridjs

Version:

Advanced table plugin

11 lines (10 loc) 301 B
import Base from './base'; import { TCell } from './types'; import { ComponentChild } from 'preact'; declare class Cell extends Base { data: number | string | boolean | ComponentChild; constructor(data: TCell); private cast; update(data: TCell): Cell; } export default Cell;