diff --git a/react-slick/react-slick.d.ts b/react-slick/react-slick.d.ts
index 222089b537..090037bc52 100644
--- a/react-slick/react-slick.d.ts
+++ b/react-slick/react-slick.d.ts
@@ -1,45 +1,45 @@
-///
+///
-declare module 'react-slick' {
- interface __config {
- className?: string
- adaptiveHeight?: boolean
- arrows?: boolean
- autoplay?: boolean
- autoplaySpeed?: number // integer
- centerMode?: boolean
- centerPadding?: string | any
- cssEase?: string | any
- dots?: boolean
- dotsClass?: string
- draggable?: boolean
- easing?: string
- fade?: boolean
- focusOnSelect?: boolean
- infinite?: boolean // should the gallery wrap around it's contents
- initialSlide?: number // int
- lazyLoad?: boolean
- rtl?: boolean
- slide?: string
- slidesToShow?: number // int
- slidesToScroll?: number // int
- speed?: number //int
- swipe?: boolean
- swipeToSlide?: boolean
- touchMove?: boolean
- touchThreshold?: number // int
- variableWidth?: boolean
- useCSS?: boolean
- vertical?: boolean
- afterChange?: (() => void)
- beforeChange?: (() => void)
- slickGoTo?: number // int
- }
+interface __config {
+ className?: string
+ adaptiveHeight?: boolean
+ arrows?: boolean
+ autoplay?: boolean
+ autoplaySpeed?: number // integer
+ centerMode?: boolean
+ centerPadding?: string | any
+ cssEase?: string | any
+ dots?: boolean
+ dotsClass?: string
+ draggable?: boolean
+ easing?: string
+ fade?: boolean
+ focusOnSelect?: boolean
+ infinite?: boolean // should the gallery wrap around it's contents
+ initialSlide?: number // int
+ lazyLoad?: boolean
+ rtl?: boolean
+ slide?: string
+ slidesToShow?: number // int
+ slidesToScroll?: number // int
+ speed?: number //int
+ swipe?: boolean
+ swipeToSlide?: boolean
+ touchMove?: boolean
+ touchThreshold?: number // int
+ variableWidth?: boolean
+ useCSS?: boolean
+ vertical?: boolean
+ afterChange?: (() => void)
+ beforeChange?: (() => void)
+ slickGoTo?: number // int
+}
- interface Slider extends __config {
- responsive?: { breakpoint: number; settings: __config}[]
- }
+interface Slider extends __config {
+ responsive?: { breakpoint: number; settings: __config}[]
+}
+declare module "react-slick" {
var Slider: __React.ClassicComponentClass;
export = Slider;
}