UNPKG

shopper

Version:
7 lines (6 loc) 268 B
import { CartStorage, ShopperConfig } from "../interfaces.js"; export interface ShopperInstallOptions { config?: ShopperConfig; cartStorage?: CartStorage; } export declare function setupShopper({ config, cartStorage, }?: ShopperInstallOptions): Promise<void>;