Ran prettier fix

This commit is contained in:
Luis Alvarez
2021-01-22 12:17:39 -05:00
parent bccef99c35
commit 8784e05183
13 changed files with 129 additions and 96 deletions

View File

@@ -10,15 +10,15 @@ import updateItem from './handlers/update-item'
import removeItem from './handlers/remove-item'
type OptionSelections = {
option_id: Number
option_value: Number|String
option_id: Number
option_value: Number | String
}
export type ItemBody = {
productId: number
variantId: number
quantity?: number
optionSelections?: OptionSelections
quantity?: number
optionSelections?: OptionSelections
}
export type AddItemBody = { item: ItemBody }