handsontable
Version:
Handsontable is a JavaScript Data Grid available for React, Angular and Vue.
7 lines (5 loc) • 382 B
TypeScript
import Core from '../../core';
import { CellProperties } from '../../settings';
export const RENDERER_TYPE: 'numeric';
export const valueFormatter: (value: any, cellProperties: CellProperties) => string;
export function numericRenderer(instance: Core, TD: HTMLTableCellElement, row: number, column: number, prop: string | number, value: any, cellProperties: CellProperties): void;