diff --git a/jquery.slimScroll/jquery.slimScroll.d.ts b/jquery.slimScroll/jquery.slimScroll.d.ts index 30797f861..d894828eb 100644 --- a/jquery.slimScroll/jquery.slimScroll.d.ts +++ b/jquery.slimScroll/jquery.slimScroll.d.ts @@ -4,7 +4,7 @@ // Definitions: https://github.com/borisyankov/DefinitelyTyped /// -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; } }