Skip to content

Commit

Permalink
factor PipettingRunTimeCommand type into AtLocation and InPlace
Browse files Browse the repository at this point in the history
  • Loading branch information
ncdiehl11 committed Nov 9, 2023
1 parent 632bfe5 commit 669e49f
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions shared-data/command/types/pipetting.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
import type { CommonCommandRunTimeInfo, CommonCommandCreateInfo } from '.'
export type PipettingRunTimeCommand =
| PipettingAtLocationRunTimeCommand
| PipettingInPlaceRunTimeCommand

export type PipettingAtLocationRunTimeCommand =
| AspirateRunTimeCommand
| BlowoutInPlaceRunTimeCommand
| BlowoutRunTimeCommand
| ConfigureForVolumeRunTimeCommand
| DispenseInPlaceRunTimeCommand
| DispenseRunTimeCommand
| DropTipInPlaceRunTimeCommand
| DropTipRunTimeCommand
| PickUpTipRunTimeCommand
| PrepareToAspirateRunTimeCommand
| TouchTipRunTimeCommand

export type PipettingInPlaceRunTimeCommand =
| BlowoutInPlaceRunTimeCommand
| ConfigureForVolumeRunTimeCommand
| DispenseInPlaceRunTimeCommand
| DropTipInPlaceRunTimeCommand
| PrepareToAspirateRunTimeCommand

export type PipettingCreateCommand =
| AspirateCreateCommand
| BlowoutCreateCommand
Expand Down

0 comments on commit 669e49f

Please sign in to comment.