frontend/.pnpm-store/v3/files/9f/e0d85e18c62ff88cfc4d6175424c063fd72949773098137180fff24e7e3bb721bdceaf8b1838c81d40516317d9d27e1e26aabe6292411c0b8d535cb03fdb8d

16 lines
346 B
Plaintext

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;
/**
* Updates the Cell's data
*
* @param data
*/
update(data: TCell): Cell;
}
export default Cell;