@league-of-foundry-developers/foundry-vtt-types 0.8.9-8 → 0.8.9-9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
@@ -31,13 +31,13 @@ declare class DragDrop {
|
|
31
31
|
* The HTML selector which identifies draggable elements
|
32
32
|
* @defaultValue `undefined`
|
33
33
|
*/
|
34
|
-
dragSelector: string | undefined;
|
34
|
+
dragSelector: string | null | undefined;
|
35
35
|
|
36
36
|
/**
|
37
37
|
* The HTML selector which identifies drop targets
|
38
38
|
* @defaultValue `undefined`
|
39
39
|
*/
|
40
|
-
dropSelector: string | undefined;
|
40
|
+
dropSelector: string | null | undefined;
|
41
41
|
|
42
42
|
/**
|
43
43
|
* A set of permission checking functions for each action of the Drag and Drop workflow
|