@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) • 407 B
TypeScript
import type { XapiAvocado } from "../XapiAvocado";
import type { Avocado } from "@selldone/core-js/models/shop/order/avocado/avocado.order";
export default function getOrder(this: XapiAvocado, hash: string): import("@selldone/core-js").IExtendedPromiseWithCache<xapi.avocado.order.get.IResponse>;
export declare namespace xapi.avocado.order.get {
interface IResponse {
avocado: Avocado;
}
}