* chore(examples): update ts example of layouting Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore(docs): cleanup animated layout example Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --------- Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
8 lines
170 B
TypeScript
8 lines
170 B
TypeScript
import type { Edge } from '@vue-flow/core'
|
|
|
|
export interface ProcessEdgeData {
|
|
isAnimating?: boolean
|
|
}
|
|
|
|
export type ProcessEdge = Edge<ProcessEdgeData, any, 'process'>
|