@dscodotco/theme-cli
Version:
A CLI tool for developing Shopify themes
16 lines (15 loc) • 450 B
TypeScript
/**
* Utility to test the Shopify API connection
*/
import { ShopifyCredentials } from "./theme-manager.js";
/**
* Tests the connection to the Shopify Admin API
* @param credentials Shopify API credentials
* @returns Object containing test result and message
*/
export declare function testShopifyConnection(credentials: ShopifyCredentials): Promise<{
success: boolean;
message: string;
statusCode?: number;
themes?: any[];
}>;