UNPKG

@bolttech/server-side-next

Version:

This library was generated with [Nx](https://nx.dev).

9 lines (8 loc) 433 B
import { CheckoutServiceInterface, SaveSessionParams } from '../checkout'; import { DefaultParams } from '../../common/interface/request.interface'; declare class CheckoutService implements CheckoutServiceInterface { getCheckoutState<T>({ query, headers, host, }: DefaultParams): Promise<T>; saveSession({ body }: SaveSessionParams): Promise<void>; } export declare const checkoutService: CheckoutService; export {};