From 7589ddfcbc30151bf9990fa3babf57dd6d1a5381 Mon Sep 17 00:00:00 2001 From: Greg Zapp Date: Mon, 19 Feb 2018 19:06:40 -0600 Subject: [PATCH] Correct row documentation and add original property. --- types/react-table/index.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/types/react-table/index.d.ts b/types/react-table/index.d.ts index 2ab2d2a821..341bb103cb 100644 --- a/types/react-table/index.d.ts +++ b/types/react-table/index.d.ts @@ -601,9 +601,12 @@ export interface RowRenderProps extends Partial { } export interface RowInfo { - /** Original row from your data */ + /** Materialized row of data */ row: any; + /** Original row from your data */ + original: any; + /** The post-accessed values from the original row */ rowValues: any;