fix: 🐛 fix lint error (#1649)
This commit is contained in:
@ -381,7 +381,7 @@ export namespace Segments {
|
||||
) => Edge.TerminalCellData['anchor']
|
||||
createHandle?: (options: Handle.Options) => Handle
|
||||
processHandle?: (handle: Handle) => void
|
||||
onChanged?: (options: { edge: Edge, edgeView: EdgeView }) => void
|
||||
onChanged?: (options: { edge: Edge; edgeView: EdgeView }) => void
|
||||
}
|
||||
|
||||
export interface EventData {
|
||||
|
@ -3,7 +3,7 @@ import { Point } from '../../geometry'
|
||||
import { Graph } from '../../graph'
|
||||
import { View } from '../../view/view'
|
||||
import { EdgeView } from '../../view/edge'
|
||||
import { Edge } from './../../model/edge'
|
||||
import { Edge } from '../../model/edge'
|
||||
import { ToolsView } from '../../view/tool'
|
||||
import { Attr } from '../attr'
|
||||
|
||||
@ -287,7 +287,7 @@ export namespace Vertices {
|
||||
attrs?: Attr.SimpleAttrs | ((handle: Handle) => Attr.SimpleAttrs)
|
||||
createHandle?: (options: Handle.Options) => Handle
|
||||
processHandle?: (handle: Handle) => void
|
||||
onChanged?: (options: { edge: Edge, edgeView: EdgeView }) => void
|
||||
onChanged?: (options: { edge: Edge; edgeView: EdgeView }) => void
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -23,7 +23,7 @@
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"@antv/x6": "^1.28.2",
|
||||
"@antv/x6": "^1.28.1",
|
||||
"@umijs/preset-react": "1.x",
|
||||
"antd": "^4.4.2",
|
||||
"classnames": "^2.2.6",
|
||||
|
Reference in New Issue
Block a user