Fixed a couple type errors

This commit is contained in:
thepaperpilot 2021-08-20 23:45:57 -05:00
parent 4e7dfe8cbf
commit 0e139785a5

View file

@ -126,7 +126,7 @@ export default defineComponent({
getZoomLevel(): number { getZoomLevel(): number {
return (this.$refs.stage as any).$panZoomInstance.getTransform().scale; return (this.$refs.stage as any).$panZoomInstance.getTransform().scale;
}, },
onInit: function(panzoomInstance) { onInit: function(panzoomInstance: any) {
panzoomInstance.setTransformOrigin(null); panzoomInstance.setTransformOrigin(null);
}, },
startDragging(e: MouseEvent, nodeID: string) { startDragging(e: MouseEvent, nodeID: string) {
@ -168,7 +168,7 @@ export default defineComponent({
nodes.push(draggingNode); nodes.push(draggingNode);
if (receivingNode) { if (receivingNode) {
this.board.types[receivingNode.type].onDrop(receivingNode, draggingNode); this.board.types[receivingNode.type].onDrop?.(receivingNode, draggingNode);
} }
this.dragging = null; this.dragging = null;