Skip to content

Commit

Permalink
Removed Selection type from props
Browse files Browse the repository at this point in the history
  • Loading branch information
guzmanvig committed Feb 14, 2024
1 parent 38b9f7d commit b7ea117
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions src/SeqViewerContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,11 @@ interface SeqViewerContainerProps {
rotateOnScroll: boolean;
search: NameRange[];
selectAllEvent: (event: React.KeyboardEvent<HTMLElement>) => boolean;
selection?:
| {
clockwise?: boolean;
end: number;
start: number;
}
| Selection;
selection?: {
clockwise?: boolean;
end: number;
start: number;
};
seq: string;
seqType: SeqType;
showComplement: boolean;
Expand Down

0 comments on commit b7ea117

Please sign in to comment.