Changed IOption to IJquerySlimScrollOptions

This commit is contained in:
Chintan Shah
2014-11-20 12:45:21 +05:30
parent 62adfb110f
commit eedb8b311f

View File

@@ -4,7 +4,7 @@
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../jquery/jquery.d.ts"/>
interface IOptions {
interface IJQuerySlimScrollOptions {
// width in pixels of the visible scroll area
width? :string;
// height in pixels of the visible scroll area
@@ -54,7 +54,7 @@ interface IOptions {
interface JQuery {
slimScroll:{
(): JQuery;
(options:IOptions): JQuery;
(options:IJQuerySlimScrollOptions): JQuery;
}
}