Correct row documentation and add original property.

This commit is contained in:
Greg Zapp
2018-02-19 19:06:40 -06:00
parent 070eb128b8
commit 7589ddfcbc

View File

@@ -601,9 +601,12 @@ export interface RowRenderProps extends Partial<RowInfo> {
}
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;