diff --git a/src/frontend/src/types/flow/index.ts b/src/frontend/src/types/flow/index.ts index 9f947950c..3f244c753 100644 --- a/src/frontend/src/types/flow/index.ts +++ b/src/frontend/src/types/flow/index.ts @@ -35,3 +35,17 @@ export type TweaksType = Array< }; } & FlowStyleType >; + +// right side +export type sourceHandleType = { + dataType: string; + id: string; + baseClasses: string[]; +}; +//left side +export type targetHandleType = { + inputTypes?: string[]; + type: string; + fieldName: string; + id: string; +};