UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

13 lines (12 loc) 306 B
interface Options { moduleURL: string; argv?: string[]; } /** * Launches the CLI through our custom OCLIF loader. * * @param options - Options. * @returns A promise that resolves when the CLI has been launched. */ export declare function launchCLI(options: Options): Promise<void>; export {};