From f6a4ce8ae685cc8aecd9314eae9fa1268165ba6c Mon Sep 17 00:00:00 2001 From: Alessandro Mammana Date: Fri, 21 Dec 2018 09:07:57 +0100 Subject: [PATCH] Add missing semicolon Technically the code still works without that semicolon, but I think even the most lenient compiler settings will complain about it, and it is the convention throughout the file. --- types/sortablejs/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/sortablejs/index.d.ts b/types/sortablejs/index.d.ts index 6a3b232016..92f0fce4bd 100644 --- a/types/sortablejs/index.d.ts +++ b/types/sortablejs/index.d.ts @@ -194,7 +194,7 @@ declare namespace Sortable { /** * if you have custom scrollbar scrollFn may be used for autoscrolling */ - scrollFn?: ((this: Sortable, offsetX: number, offsetY: number, event: MouseEvent) => void) + scrollFn?: ((this: Sortable, offsetX: number, offsetY: number, event: MouseEvent) => void); /** * px, how near the mouse must be to an edge to start scrolling. */