diff --git a/types/react-table/index.d.ts b/types/react-table/index.d.ts index 0b5baa5292..0f159daf3f 100644 --- a/types/react-table/index.d.ts +++ b/types/react-table/index.d.ts @@ -610,9 +610,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;