From 4258155e849bdd18608023e6db4f778fbcf0f123 Mon Sep 17 00:00:00 2001 From: Akim Bassa Date: Fri, 8 Sep 2017 10:12:47 +0200 Subject: [PATCH] Add property 'version' to BootstrapTableProps --- types/react-bootstrap-table/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/react-bootstrap-table/index.d.ts b/types/react-bootstrap-table/index.d.ts index a31d860775..36a37039d7 100644 --- a/types/react-bootstrap-table/index.d.ts +++ b/types/react-bootstrap-table/index.d.ts @@ -81,6 +81,10 @@ export interface RemoteObjSpec { export interface BootstrapTableProps extends Props { /** + Set version='4' to use bootstrap@4, else bootstrap@3 is used. + */ + version?: string; + /** Use data to specify the data that you want to display on table. */ data: any[];