UNPKG

@shopify/cli

Version:

A CLI tool to build for the Shopify platform

17 lines (16 loc) 494 B
import type { DoctorContext } from '@shopify/cli-kit/node/doctor/types'; export interface ThemeDoctorContext extends DoctorContext { environment: string; store?: string; password?: string; themeName?: string; themePath?: string; themeId?: string; } export interface ThemeDoctorOptions { path?: string; environment: string; store?: string; password?: string; } export declare function createDoctorContext(options: ThemeDoctorOptions): ThemeDoctorContext;