Skip to content

Instantly share code, notes, and snippets.

@berdyshev
berdyshev / react-table.d.ts
Last active July 19, 2022 14:21 — forked from Grsmto/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 = {
render: (type: string) => any;
getCellProps: () => any;
column: Column;