@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.
12 lines (11 loc) • 358 B
TypeScript
import { Gapi } from "../Gapi";
export default function fetchCountries(this: Gapi): import("../..").IExtendedPromiseWithCache<gapi.countries.get.ICountry[]>;
export declare namespace gapi.countries.get {
type ICountry = {
name: string;
alpha2: string;
alpha3: string;
numeric: string;
currency: string[];
};
}