storenest-commerce
Version:
Complete e-commerce SDK for Storenest platform with React components, multi-language support, secure checkout, and enterprise-grade security
12 lines (11 loc) • 304 B
TypeScript
export interface Shop {
id: number;
name: string;
}
export interface Category {
id: number;
name: string;
}
export declare function getShop(): Promise<Shop | null>;
export declare function getCategories(): Promise<Category[]>;
export declare function getShopPlugins(): Promise<string[]>;