UNPKG

@polls-platform/core

Version:

Polls Platform core library

11 lines (10 loc) 388 B
import { DynamicPollTheme, PostVoteActionMap } from './types'; export interface ShopifyConfig { apiKey: string; storeId: string; storeUrl: string; dynamicPollTheme: DynamicPollTheme; defaultPostVoteActionMap?: PostVoteActionMap; } export declare function setShopifyConfig(config: ShopifyConfig): void; export declare function getShopifyConfig(): ShopifyConfig | null;