shopperman
Version:
shopping cart ui for shopify stores
20 lines (19 loc) • 425 B
TypeScript
import { CurrencyControl } from "../stores/currency-control";
/**
* Shopify api client
*/
export declare type ShopifyClient = any;
/**
* Shopify's sdk settings
*/
export interface ShopifySettings {
domain: string;
storefrontAccessToken: string;
}
/**
* Options for the shopperman shopify adapter
*/
export interface ShopifyAdapterOptions {
settings: ShopifySettings;
currencyControl: CurrencyControl;
}