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;