We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 232fddb + e543d73 commit 2b26d5fCopy full SHA for 2b26d5f
src/gridstack.ts
@@ -21,8 +21,9 @@ export * from './gridstack-ddi';
21
export interface GridHTMLElement extends HTMLElement {
22
gridstack?: GridStack; // grid's parent DOM element points back to grid class
23
}
24
+/** list of possible events, or space separated list of them */
25
export type GridStackEvent = 'added' | 'change' | 'disable' | 'drag' | 'dragstart' | 'dragstop' | 'dropped' |
- 'enable' | 'removed' | 'resize' | 'resizestart' | 'resizestop';
26
+ 'enable' | 'removed' | 'resize' | 'resizestart' | 'resizestop' | string;
27
28
/** Defines the coordinates of an object */
29
export interface MousePosition {
0 commit comments