@@ -2,7 +2,7 @@ import React from 'react'
2
2
3
3
type ChildElement = any
4
4
5
- interface CAlert extends CFade {
5
+ interface CAlert {
6
6
children ?: ChildElement ;
7
7
className ?: string ;
8
8
innerRef ?: object | Function | string ;
@@ -247,7 +247,7 @@ interface Transition {
247
247
onExited ?: Function ;
248
248
}
249
249
250
- interface CCollapse extends Transition {
250
+ interface CCollapse {
251
251
children ?: ChildElement | Array < ChildElement > ;
252
252
className ?: string ;
253
253
innerRef ?: object | Function | string ;
@@ -908,14 +908,25 @@ interface CSubheader {
908
908
innerRef ?: object | Function | string ;
909
909
}
910
910
911
+ interface CSwitch {
912
+ className ?: string
913
+ innerRef ?: object | Function | string
914
+ size ?: '' | 'lg' | 'sm'
915
+ color ?: string
916
+ labelOn ?: string
917
+ labelOff ?: string
918
+ variant ?: '' | '3d' | 'opposite' | 'outline'
919
+ shape ?: '' | 'pill' | 'square'
920
+ }
921
+
911
922
interface CTabContent {
912
923
children ?: ChildElement ;
913
924
className ?: string ;
914
925
innerRef ?: object | Function | string ;
915
926
fade ?: boolean ;
916
927
}
917
928
918
- interface CTabPane extends CFade {
929
+ interface CTabPane {
919
930
children ?: ChildElement ;
920
931
className ?: string ;
921
932
innerRef ?: func | string | object ;
@@ -928,7 +939,7 @@ interface CTabs {
928
939
onActiveTabChange ?: Function ;
929
940
}
930
941
931
- interface CToast extends CFade {
942
+ interface CToast {
932
943
className ?: string ;
933
944
children ?: ChildElement ;
934
945
innerRef ?: func | string | object ;
@@ -1137,6 +1148,7 @@ export declare const CSidebarNavItem: (props: CSidebarNavItem) => React.SFC<CSid
1137
1148
export declare const CSidebarNavTitle : ( props : CSidebarNavTitle ) => React . SFC < CSidebarNavTitle > ;
1138
1149
export declare const CSpinner : ( props : CSpinner ) => React . SFC < CSpinner > ;
1139
1150
export declare const CSubheader : ( props : CSubheader ) => React . SFC < CSubheader > ;
1151
+ export declare const CSwitch : ( props : CSwitch ) => React . SFC < CSwitch > ;
1140
1152
export declare const CTabContent : ( props : CTabContent ) => React . SFC < CTabContent > ;
1141
1153
export declare const CTabPane : ( props : CTabPane ) => React . SFC < CTabPane > ;
1142
1154
export declare const CTabs : ( props : CTabs ) => React . SFC < CTabs > ;
0 commit comments