From 6a4bf3433dabc22f3f7a4557572c6c56c720ea34 Mon Sep 17 00:00:00 2001 From: Gregor Woiwode Date: Wed, 9 Sep 2015 12:00:12 +0200 Subject: [PATCH] Adds missing t to SimplebarOptions --- simplebar/simplebar.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/simplebar/simplebar.d.ts b/simplebar/simplebar.d.ts index 63173f432..bab795e1a 100755 --- a/simplebar/simplebar.d.ts +++ b/simplebar/simplebar.d.ts @@ -3,9 +3,9 @@ // Definitions by: Gregor Woiwode // Definitions: https://github.com/borisyankov/DefinitelyTyped -interface SimplebarOpions { +interface SimplebarOptions { autoHide?: boolean; - wrapContent?: boolean + wrapContent?: boolean; } interface JQuery { @@ -18,7 +18,7 @@ interface JQuery { * * @param indicator if scrollbar should be faded out automatically. */ - (options?: SimplebarOpions): JQuery; + (options?: SimplebarOptions): JQuery; }; } @@ -32,6 +32,6 @@ interface JQueryStatic { * * @param indicator if scrollbar should be faded out automatically. */ - (options?: SimplebarOpions): JQuery; + (options?: SimplebarOptions): JQuery; }; }