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) 457 B
import { XapiVendor } from "../XapiVendor"; import type { Vendor } from "@selldone/core-js/models/shop/vendor/vendor.model"; export default function getVendor(this: XapiVendor, vendor_id: string | number): import("@selldone/core-js").IExtendedPromiseWithCache<xapi.vendor.get.IResponse>; export declare namespace xapi.vendor.get { interface IResponse { vendor: Pick<Vendor, "id" | "status" | "enable" | "name" | "description" | "icon">; } }