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; }; }