created type for HandleIds

This commit is contained in:
anovazzi1 2023-07-12 17:49:15 -03:00
commit 6604ef5351

View file

@ -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;
};