UNPKG

@wallfar/ocd-studio-core-sdk

Version:

Helper SDK for our OneClick Studio modules

13 lines (12 loc) 389 B
import type { WebshopServerConfig, PromoCodeDto } from './types.js'; declare class WebshopServer { private config; constructor(config: WebshopServerConfig); validatePromoCode(code: string): Promise<{ valid: boolean; promo?: PromoCodeDto; error?: string; }>; createPaymentLink(checkoutData: any): Promise<string>; } export default WebshopServer;