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.
This commit is contained in:
Alessandro Mammana 2018-12-21 09:07:57 +01:00 committed by GitHub
parent 37c37a0e2a
commit f6a4ce8ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.
*/