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 @@
import { XYPosition, GraphNode } from '@braks/vue-flow'
import { roundUp, roundDown } from './utils'
import type { GraphNode, XYPosition } from '@braks/vue-flow'
import { roundDown, roundUp } from './utils'
export type NodeBoundingBox = {
export interface NodeBoundingBox {
id: string
width: number
height: number
@@ -11,7 +11,7 @@ export type NodeBoundingBox = {
bottomRight: XYPosition
}
export type GraphBoundingBox = {
export interface GraphBoundingBox {
width: number
height: number
topLeft: XYPosition