UNPKG

shopperman

Version:

shopping cart ui for shopify stores

9 lines (8 loc) 283 B
import { CartItem } from "../stores/cart-item"; /** * CHECKOUT MACHINE ABSTRACT CLASS * - has a checkout method which takes items and returns a checkout url string */ export declare abstract class CheckoutMachineBase { abstract checkout(items: CartItem[]): Promise<string>; }