Skip to content

Commit

Permalink
fix(medusa): Type in AbstractFulfillmentService (medusajs#5003)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepijn-vanvlaanderen authored Sep 10, 2023
1 parent d8649ba commit c78e7df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/medusa/src/interfaces/fulfillment-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export interface FulfillmentService {
*/
createFulfillment(
data: ShippingMethodData,
items: LineItem,
items: LineItem[],
order: Order,
fulfillment: Fulfillment
): Promise<FulfillmentProviderData>
Expand Down Expand Up @@ -143,7 +143,7 @@ export abstract class AbstractFulfillmentService implements FulfillmentService {

abstract createFulfillment(
data: ShippingMethodData,
items: LineItem,
items: LineItem[],
order: Order,
fulfillment: Fulfillment
): Promise<FulfillmentProviderData>
Expand Down

0 comments on commit c78e7df

Please sign in to comment.