@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.
10 lines (9 loc) • 393 B
TypeScript
import { Currency } from "@selldone/core-js/enums/payment/Currency";
import { XapiUser } from "../XapiUser";
export default function setUserCurrency(this: XapiUser, currency: keyof typeof Currency): Promise<xapi.user.currency.put.IResponse>;
export declare namespace xapi.user.currency.put {
interface IResponse {
success: boolean;
currency: keyof typeof Currency;
}
}