Add definition of Slider constructor

This commit is contained in:
Paul Jolly
2015-09-02 18:34:14 +01:00
parent a2963b3fa4
commit b366162ae8

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.