UNPKG

301 BTypeScriptView Raw
1import Base from './base';
2import { TCell } from './types';
3import { ComponentChild } from 'preact';
4declare class Cell extends Base {
5 data: number | string | boolean | ComponentChild;
6 constructor(data: TCell);
7 private cast;
8 update(data: TCell): Cell;
9}
10export default Cell;