From c6f98efdf724cf74fe704648a90ec0a3dce5a46f Mon Sep 17 00:00:00 2001 From: yamagen0915 Date: Wed, 11 Sep 2019 22:39:45 +0900 Subject: [PATCH] Add the viewColumns option to the MUIDataTableColumnOptions (#38292) --- types/mui-datatables/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/mui-datatables/index.d.ts b/types/mui-datatables/index.d.ts index 3476637073..4cadd65a2a 100644 --- a/types/mui-datatables/index.d.ts +++ b/types/mui-datatables/index.d.ts @@ -124,6 +124,7 @@ export interface MUIDataTableColumnOptions { setCellProps?: (cellValue: string, rowIndex: number, columnIndex: number) => object; sort?: boolean; sortDirection?: 'asc' | 'desc'; + viewColumns?: boolean; } export interface MUIDataTableOptions {