Skip to content

Instantly share code, notes, and snippets.

@stooboo
stooboo / react-table.d.ts
Created August 9, 2019 22:24 — forked from berdyshev/react-table.d.ts
React Table v7 TS typings definition
// Type definitions for react-table 7
// Project: https://github.com/tannerlinsley/react-table#readme
// Definitions by: Grsmto <https://github.com/grsmto>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.0
declare module "react-table" {
export type Cell<TRowData = any> = {
column: Column<TRowData>;
getCellProps: () => any;
render: (type: string) => any;