From eedb8b311f4d156790aa0f326406bd4c54883450 Mon Sep 17 00:00:00 2001 From: Chintan Shah Date: Thu, 20 Nov 2014 12:45:21 +0530 Subject: [PATCH] Changed IOption to IJquerySlimScrollOptions --- jquery.slimScroll/jquery.slimScroll.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; } }