UNPKG

@medusajs/core-flows

Version:

Set of workflow definitions for Medusa

17 lines 541 B
import { CartDTO, FindConfig } from "@medusajs/framework/types"; /** * The details of the cart to retrieve. */ export interface RetrieveCartStepInput { /** * The ID of the cart to retrieve. */ id: string; config?: FindConfig<CartDTO>; } export declare const retrieveCartStepId = "retrieve-cart"; /** * This step retrieves a cart's details. */ export declare const retrieveCartStep: import("@medusajs/framework/workflows-sdk").StepFunction<RetrieveCartStepInput, CartDTO>; //# sourceMappingURL=retrieve-cart.d.ts.map