From daa3d0f119fe424e5a5ceff3d0529ec8e7de8f9a Mon Sep 17 00:00:00 2001 From: Wlad Meixner Date: Tue, 17 Mar 2020 17:43:48 +0100 Subject: [PATCH] [react-bootstrap-table-next] loosen column type --- types/react-bootstrap-table-next/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/react-bootstrap-table-next/index.d.ts b/types/react-bootstrap-table-next/index.d.ts index 3c1fe3f596..12a5492c17 100644 --- a/types/react-bootstrap-table-next/index.d.ts +++ b/types/react-bootstrap-table-next/index.d.ts @@ -329,7 +329,7 @@ export interface BootstrapTableProps { * Provides data for your table. It accepts a single Array object. */ data: any[]; - columns: Array>; + columns: ColumnDescription[]; bootstrap4?: boolean; remote?: boolean | Partial<{ pagination: boolean; filter: boolean; sort: boolean; cellEdit: boolean }>; noDataIndication?: () => JSX.Element | JSX.Element | string;