From ae4c64b79ddc3acab27c88ea818151cf15f9fa64 Mon Sep 17 00:00:00 2001 From: Sergey Tregub Date: Fri, 23 Jun 2017 14:18:28 +0300 Subject: [PATCH] bsClass attribute missing for some components --- types/react-bootstrap/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/react-bootstrap/index.d.ts b/types/react-bootstrap/index.d.ts index 3030e7d6a5..a696c4ac6d 100644 --- a/types/react-bootstrap/index.d.ts +++ b/types/react-bootstrap/index.d.ts @@ -847,6 +847,7 @@ declare namespace ReactBootstrap { // interface BadgeProps extends React.HTMLProps { + bsClass?: string; pullRight?: boolean; } type Badge = React.ClassicComponent; @@ -908,6 +909,7 @@ declare namespace ReactBootstrap { responsive?: boolean; striped?: boolean; fill?: boolean; + bsClass?: string; } type Table = React.ClassicComponent; var Table: React.ClassicComponentClass;