Merge pull request #221 from inetsoft-anton/patch-1

Unrestrict cursor option typing
This commit is contained in:
Nathan Cahill 2019-11-22 08:54:07 -07:00 committed by GitHub
commit 7c654903f6

View File

@ -42,7 +42,7 @@ declare namespace Split {
direction?: 'horizontal' | 'vertical'; direction?: 'horizontal' | 'vertical';
// Cursor to display while dragging. // Cursor to display while dragging.
cursor?: 'col-resize' | 'row-resize'; cursor?: string;
// Callback on drag. // Callback on drag.
onDrag?(): void; onDrag?(): void;