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.

8 lines (7 loc) 503 B
import { Map } from "../../models/shop/map/map.model"; import { Order } from "../../models"; export declare class MapHelper { static GenerateFullAddressFromMapInfo(info_object: Order.IAddress): string | null; static GetMapImage(lng: number, lat: number, zoom: number, size?: string, style_id?: 'streets-v11' | 'streets-v12' | 'dark-v11' | 'navigation-day-v1' | 'navigation-night-v1'): string | null; static GetMapDirectionUrl(location: Map.ILocation, travelmode?: boolean): string | null; }