UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

15 lines (12 loc) 419 B
import { CellTypeObject } from '../base'; import { TextEditor } from '../../editors/textEditor'; import { textRenderer } from '../../renderers/textRenderer'; export const CELL_TYPE: 'text'; export interface TextCellType extends CellTypeObject { editor: typeof TextEditor; renderer: typeof textRenderer; } export namespace TextCellType { export { TextEditor as editor }; export { textRenderer as renderer }; }