Initial commit

This commit is contained in:
2021-10-23 19:59:20 +10:00
commit ba4c9a7d7a
1851 changed files with 1250444 additions and 0 deletions

17
node_modules/konva/cmj/DragAndDrop.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import { Node } from './Node';
import { Vector2d } from './types';
export declare const DD: {
readonly isDragging: boolean;
justDragged: boolean;
readonly node: Node<import("./Node").NodeConfig>;
_dragElements: Map<number, {
node: Node;
startPointerPos: Vector2d;
offset: Vector2d;
pointerId?: number;
dragStatus: 'ready' | 'dragging' | 'stopped';
}>;
_drag(evt: any): void;
_endDragBefore(evt?: any): void;
_endDragAfter(evt: any): void;
};