mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-09-14 21:20:39 +00:00
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:
Vendored
+1
-1
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user