chore: lint files

This commit is contained in:
Braks
2022-05-22 22:46:47 +02:00
parent 4ee7eb909a
commit a90bbb9b5e
10 changed files with 48 additions and 22 deletions
@@ -1,7 +1,7 @@
/**
* Draws a SVG path from a list of points, using straight lines.
*/
import { XYPosition } from '@braks/vue-flow'
import type { XYPosition } from '@braks/vue-flow'
const getMidPoint = (Ax: number, Ay: number, Bx: number, By: number) => {
const Zx = (Ax - Bx) / 2 + Bx