Skip to content

Commit

Permalink
Fix indent
Browse files Browse the repository at this point in the history
Signed-off-by: Geoffroy Jamgotchian <[email protected]>
  • Loading branch information
geofjamg committed Dec 20, 2024
1 parent 4b68c0b commit cf3a811
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@ import { debounce } from '@mui/material';

type DIMENSIONS = { width: number; height: number; viewbox: VIEWBOX };
type VIEWBOX = { x: number; y: number; width: number; height: number };
export type BranchState = { branchId: string; value1: number | string; value2: number | string; connected1: boolean; connected2: boolean };
export type BranchState = {
branchId: string;
value1: number | string;
value2: number | string;
connected1: boolean;
connected2: boolean;
};

export type OnMoveNodeCallbackType = (
equipmentId: string,
Expand Down

0 comments on commit cf3a811

Please sign in to comment.