shopperman
Version:
shopping cart ui for shopify stores
24 lines (19 loc) • 401 B
text/typescript
import {CurrencyControl} from "../stores/currency-control"
/**
* Shopify api client
*/
export 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
}