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;