import { CFActiveCart } from "../../CommonTypes"; export interface GetCurrentCartResponse { success: boolean; cart: CFActiveCart; timestamp: string; } export type GetCurrentCart = () => Promise;