Merge pull request #5663 from myitcv/bootstrap_slider_module

Add definition of Slider constructor
This commit is contained in:
Masahiro Wakame
2015-09-08 21:53:09 +09:00
+7
View File
@@ -137,6 +137,13 @@ interface JQueryEventObject {
value: number|ChangeValue;
}
interface SliderStatics {
new (selector: string, opts: SliderOptions): Slider;
prototype: Slider;
}
declare var Slider: SliderStatics;
/**
* This class is actually not used when using the jQuery version of bootstrap-slider
* The method documentation is still here thouh.