UNPKG

@selldone/sdk-storefront

Version:

A TypeScript SDK to connect to your shop and build a fully functional storefront and website by simply developing a frontend web application. All backend operations are seamlessly managed by the serverless Selldone solution.

9 lines (8 loc) 285 B
export declare class CouponDatabase { /** Name of the shop for which the API operations will be performed. */ shop_name: string; constructor(shop_name: string); getCouponCodes(): any[]; addCouponCode(code: string): void; removeCouponCode(code: string): void; }