feat(connectionline): add step and smoothstep types

This commit is contained in:
moklick
2020-07-13 18:02:59 +02:00
parent 1d8a9d6d87
commit 152acbe70a
8 changed files with 246 additions and 127 deletions
+3 -1
View File
@@ -167,8 +167,10 @@ export interface Connection {
}
export enum ConnectionLineType {
Bezier = 'bezier',
Bezier = 'default',
Straight = 'straight',
Step = 'step',
SmoothStep = 'smoothstep',
}
export type OnConnectFunc = (connection: Connection) => void;