UNPKG

storenest-commerce

Version:

Complete e-commerce SDK for Storenest platform with React components, multi-language support, secure checkout, and enterprise-grade security

18 lines (17 loc) 734 B
export declare const setApiBaseUrl: (url: string) => void; export declare const getApiBaseUrl: () => string; export declare const setApiKey: (key: string) => void; export declare const getApiKey: () => string | null; export declare const setProxyUrl: (url: string) => void; export declare const getProxyUrl: () => string | null; export declare const setSecretKey: (key: string) => void; export declare const getSecretKey: () => string | null; export declare const setDebugMode: (debug: boolean) => void; export declare const getDebugMode: () => boolean; export declare function initializeStorenest(config: { apiBaseUrl: string; apiKey: string; secretKey?: string; proxyUrl?: string; debugMode?: boolean; }): void;