Add property 'version' to BootstrapTableProps

This commit is contained in:
Akim Bassa
2017-09-08 10:12:47 +02:00
parent 0a02fbe82a
commit 4258155e84

View File

@@ -81,6 +81,10 @@ export interface RemoteObjSpec {
export interface BootstrapTableProps extends Props<BootstrapTable> {
/**
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[];