@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.
20 lines (19 loc) • 838 B
TypeScript
/**
* ████████████████ 🩺 Shop Debugging ████████████████
*
*/
import type { Shop } from "../../models/shop/shop.model";
export declare class ShopDebugging {
static CheckAll(shop: Shop): (string | null)[];
}
/**
* ████████████████ 🩺 Debug Theme ████████████████
*
*/
export declare class ShopDebuggingTheme {
static CheckAll(shop: Shop): (string | null)[];
static MissedThemeColors(shop: Shop): "Set theme colors." | null;
static MissedThemeListView(shop: Shop): "Set shopping list view." | null;
static MissedThemeAnimation(shop: Shop): "Set products listing animation mode." | null;
static MissedThemeHoverActions(shop: Shop): "Set quick buy action on/off mode." | null;
}