File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
shared-data/command/types Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- import type { CommonCommandRunTimeInfo , CommonCommandCreateInfo } from '.'
1
+ import type { CommonCommandCreateInfo , CommonCommandRunTimeInfo } from '.'
2
2
import type { AddressableAreaName } from '../../deck'
3
- import type { WellLocation } from './support'
4
3
import type {
5
4
Coordinates ,
5
+ GantryMount ,
6
6
MotorAxes ,
7
7
MotorAxis ,
8
- GantryMount ,
9
8
} from '../../js/types'
9
+ import type { WellLocation } from './support'
10
10
11
11
export interface MoveToSlotCreateCommand extends CommonCommandCreateInfo {
12
12
commandType : 'moveToSlot'
@@ -126,7 +126,7 @@ export interface MoveToWellParams {
126
126
pipetteId : string
127
127
labwareId : string
128
128
wellName : string
129
- wellLocation ? : WellLocation
129
+ wellLocation : WellLocation
130
130
minimumZHeight ?: number
131
131
forceDirect ?: boolean
132
132
}
Original file line number Diff line number Diff line change 1
1
type BaseWellOrigin = 'top' | 'bottom' | 'center'
2
2
export type WellOrigin = BaseWellOrigin | 'meniscus'
3
3
export interface WellOffset {
4
- x ? : number
5
- y ? : number
6
- z ? : number
4
+ x : number
5
+ y : number
6
+ z : number
7
7
}
8
8
export interface WellLocation {
9
- origin ? : WellOrigin
10
- offset ? : WellOffset
9
+ origin : WellOrigin
10
+ offset : WellOffset
11
11
}
12
12
13
13
export type DropTipWellOrigin = BaseWellOrigin | 'default'
You can’t perform that action at this time.
0 commit comments